Methods
Objects
Alternatively to our JSON-RPC API, you can use our REST endpoints to send, retrieve or list SMS resources attached to your account.
Please remember that all API endpoints below have to be appended to https://api.callr.com/rest/v1.1
HTTP Method | Endpoint | API Version | Description |
---|---|---|---|
GET | /sms | 1.1 | Retrieve the list of SMS sent or received through your account |
POST | /sms | 1.1 | Create and send an SMS resource |
GET | /sms/send | 1.1 | Create and send an SMS resource with query string parameters |
GET | /sms/<hash> | 1.1 | Retrieve a specific SMS resource based on its hash |
GET /sms
Retrieve the list of SMS sent or received through your account
Parameter | Type | Description | NULL |
---|---|---|---|
type | string |
Type of SMS to retrieve Values: "IN", "OUT" |
NO |
from | string |
Retrieve from date. Format: datetime (YYYY-MM-DD HH:MM:SS in UTC timezone. Example: "2012-04-24 23:42:00") |
NO |
to | string |
Retrieve to date. Format: datetime (YYYY-MM-DD HH:MM:SS in UTC timezone. Example: "2012-04-24 23:42:00") |
NO |
Type | Description | Format/Object |
---|---|---|
array | SMS list | Array of SMS objects. |
#!/bin/bash
login='API_LOGIN'
password='API_PASSWORD'
curl -G "https://api.callr.com/rest/v1.1/sms" \
--user "$login:$password" \
--data-urlencode type="OUT" \
--data-urlencode from="2024-11-10 07:21:05" \
--data-urlencode to="2024-11-10 07:21:05" \
;
POST /sms
Create and send an SMS resource
Parameter | Type | Description | NULL |
---|---|---|---|
from | string |
The SMS sender. If empty, a shared shortcode will be automatically selected depending on the destination carrier. Otherwise, it must be either a dedicated shortcode, or alphanumeric (at least one character - cannot be digits only). Max length = 11 characters. Depending on your account configuration, you may have to ask our support team to authorize custom Sender IDs. "SMS" is always authorized. Format: sms_sender (a-zA-Z0-9, space, dash, underscore - must contain at least one alpha character) |
NO |
to | string |
The SMS recipient. Format: phone_number (International E.164 format "+CCNSN". Example: "+16467890800", "+447890123456", or "+33678912345") |
NO |
body | string |
Text message. We auto-detect the encoding needed (GSM 03.38 or UNICODE), or you can force the encoding with options.force_encoding (see the "options" parameter). You always send UTF-8 JSON strings - encoding is done at SMS interconnections level. Depending on the encoding, messages may be split into parts at 153 (GSM) or 67 (UNICODE) characters. One SMS sent with this method may be billed as multiple SMS parts. You can check the number of parts sent with the method "sms.get". If you are using a custom sender, you can use the special string %STOPNUM% -- it will be replaced by the STOP number. |
NO |
options | object |
SMS Options. Omit parameter to use default values. Object: SMS.Options |
YES |
Type | Description | Format/Object |
---|---|---|
string | SMS ID | Format: hash (Unique object identifier) |
#!/bin/bash
login='API_LOGIN'
password='API_PASSWORD'
json='
{
"to": "+33612345678",
"from": "SMS",
"body": "An SMS sent with the CALLR REST API."
"options": null
}'
curl -X POST "https://api.callr.com/rest/v1.1/sms" \
--user "$login:$password" \
-H "Content-Type: application/json" \
-d $json
GET /sms/send
Create and send an SMS resource with query string parameters
Parameter | Type | Description | NULL |
---|---|---|---|
from | string |
The SMS sender. If empty, a shared shortcode will be automatically selected depending on the destination carrier. Otherwise, it must be either a dedicated shortcode, or alphanumeric (at least one character - cannot be digits only). Max length = 11 characters. Depending on your account configuration, you may have to ask our support team to authorize custom Sender IDs. "SMS" is always authorized. Format: sms_sender (a-zA-Z0-9, space, dash, underscore - must contain at least one alpha character) |
NO |
to | string |
The SMS recipient. Format: phone_number (International E.164 format "+CCNSN". Example: "+16467890800", "+447890123456", or "+33678912345") |
NO |
body | string |
Text message. We auto-detect the encoding needed (GSM 03.38 or UNICODE), or you can force the encoding with options.force_encoding (see the "options" parameter). You always send UTF-8 JSON strings - encoding is done at SMS interconnections level. Depending on the encoding, messages may be split into parts at 153 (GSM) or 67 (UNICODE) characters. One SMS sent with this method may be billed as multiple SMS parts. You can check the number of parts sent with the method "sms.get". If you are using a custom sender, you can use the special string %STOPNUM% -- it will be replaced by the STOP number. |
NO |
options | array |
SMS Options. Omit parameter to use default values. Format in query string: options.key=value. Object: SMS.Options |
YES |
Type | Description | Format/Object |
---|---|---|
string | SMS ID | Format: hash (Unique object identifier) |
#!/bin/bash
login='API_LOGIN'
password='API_PASSWORD'
curl -G "https://api.callr.com/rest/v1.1/sms/send" \
--user "$login:$password" \
--data-urlencode from="SMS" \
--data-urlencode to="+447890123456" \
--data-urlencode body="SMS sent with the CALLR REST API." \
;
GET /sms/<hash>
Retrieve a specific SMS resource based on its hash
Parameter | Type | Description | NULL |
---|---|---|---|
hash | string | Hash of the requested SMS | NO |
Type | Description | Format/Object |
---|---|---|
object | SMS | SMS object. |
#!/bin/bash
login='API_LOGIN'
password='API_PASSWORD'
curl -G "https://api.callr.com/rest/v1.1/sms/<hash>" \
--user "$login:$password" \
--data-urlencode hash="WWXXYYZZ" \
;