docs/versioned_docs/version-3.0.0-LTS/data-sources/soapapi.md
ToolJet can establish connections with SOAP APIs using its REST API integration.
<div style={{paddingTop:'24px'}}>To establish a connection with a SOAP API data source, you will need to add a REST API data source, as ToolJet handles SOAP APIs using REST API configurations.
You can refer to REST API Configuration Documentation for more information.
</div> <div style={{paddingTop:'24px'}}>Once you have connected to the REST API data source, you can easily write queries and interact with the SOAP API in the ToolJet application. Follow these steps to get started:
:::tip You can also transform the query results using the Transformations feature. :::
API Endpoint URL Example: http://www.dneonline.com/calculator.asmx
Request Body Example:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
<soapenv:Header/>
<soapenv:Body>
<tem:Add>
<tem:intA>100</tem:intA>
<tem:intB>5</tem:intB>
</tem:Add>
</soapenv:Body>
</soapenv:Envelope>
Additional Notes: