01
Open SMS
From the left sidebar, click SMS.
HTTP Protocol · Integration guide
Follow these steps inside the SMS platform, collect your three credentials, and start sending messages through the HTTP API.
From the left sidebar, click SMS.
In the top SMS menu, open the Developer tab.
Choose Proactively pulling, then save the configuration.
Under Interface documentation, click See › to reveal your API details.
Send these three values to your developer. Once available, the integration can start.
Errors such as blacklist interception are returned in real time.
| Parameter | Description | Example | Required |
|---|---|---|---|
sp_id | Product sp_id | xxxxxxxxx | Yes |
mobile | Recipient mobile number; MD5 and AES supported | 176xxxxxxxxx | Yes |
content | SMS content; AES supported | [TikTok] your verify code is 123 | Yes |
signature | Signature or password — choose one | xxxxxxxxxxxxxxxx | No |
password | MD5 encryption of the sp_id password | md5_hash_here | No* |
ext | Sender ID | 123 | No |
curl -X POST 'http://sms-subs.com:9511/api/send-sms-single' \ -H 'Content-Type: application/x-www-form-urlencoded' \ --data-urlencode 'sp_id=YOUR_SP_ID' \ --data-urlencode 'mobile=176xxxxxxxxx' \ --data-urlencode 'content=[Brand] Your code is 123456' \ --data-urlencode 'password=YOUR_MD5_HASH'
signature or password, according to your account configuration.