Public
Documentation Settings

smSend

Rest API SMS documentation

Create test and develop application with our SMS core functions.

Create contact, manage groups and purchase, send sms, receive sms etc.

Register for free and test your code.

Full example in SHELL, JAVA, PHP, PYTHON, NODE, RUBY, C# and PERL available on https://www.smsend.it/rest-api/

Authentication API

Authentication methods The following are the two available methods to authenticate a user, given a username and a password (registration required):

  • Using a temporary session key, which expires after a certain amount of time has passed with no performed API calls with that key.

  • Using a temporary session key, which expires after a certain amount of time has passed with no performed API calls with that key.

In both cases, the returned user_key, as well as the session key or the token, are required to be provided in the HTTP request headers in order to perform any API call after the login.

GETAuthenticate using a session key

https://app.gateway.smsend.it/API/v1.0/REST/login?username=&password=

The login with session key API lets you authenticate by using your username and password, and returns a token to be used for authenticating the next API calls.

PARAMS
username

Your account’s username

password

Your account’s dispositive password

GETAuthenticate using a user token

http://app.gateway.smsend.it/API/v1.0/REST/token?username=&password=

The login with token API lets you authenticate by using your username and password, and returns a token to be used for authenticating the next API calls.

PARAMS
username

Your account’s username

password

Your account’s dispositive password

Loading