SMS Partner
Introduction to the SMS Partner API
SMS messages are sent via the SMS Partner API. From the website, you have immediate access to our free API: it allows you to easily integrate our SMS services into your website, software, or CRM application in PHP, ASP, .NET, Java, or any other language.
Required Parameters
Each API request must include at least the following parameters:
apiKey
Your account's API key. You can obtain it from your dashboard SMS Partner
Optional Parameters
_format
Response format: json
(default) or xml
.
Example call:
Response Format and Content-Type
You can format your request in either json
or xml
.
You must set the appropriate header (Content-Type
) accordingly:
_format
Content-Type
json
application/json
xml
application/xml
Example JSON request:
Requests
All API requests must be sent to:
{command}
corresponds to the API call you wish to make, with the parameters included in the body (POST
) or in the URL (GET
).
Download a PHP Example
Directly download a usage example in PHP:
Last updated