Professional RESTful API integration guide
1. Adherence to Terms of Service: This API is designed for all software integrations. Malicious use or violation of our Terms of Service will result in account suspension.
2. Account Security: We recommend changing your password periodically for enhanced security. (Note: Changing your password will automatically reset your current API Token)
| Title | Value | Description |
|---|---|---|
| Domain | api.globalsimc.com | HTTPS protocol |
| Module | serviceapi | Primary API module |
| Method | GET | Supported method |
| Response | JSON | Format of return data |
* https:// + Domain + Modules + Function + Token + Param
https://api.globalsimc.com/serviceapi/getservicelist/?token=TOKEN
{"code":1,"data":[{"id":10,"name":"Viber","hot":"no"},{"id":9,"name":"Discord","hot":"yes"}]}
{"code":0,"msg":"Invalid API Token"}
How to obtain your token:
Navigate to Ucenter > Profile to find your API token.
Security Note: Changing your password will automatically reset your current API Token.
| Param | Value | Required | Description |
|---|---|---|---|
| token | string | YES | API Access Token |
https://api.globalsimc.com/serviceapi/getservicelist/?token=YOUR_TOKEN
{"code":1,"data":[{"id":3,"name":"Twitter","hot":"no"},{"id":2,"name":"Google","hot":"yes"},{"id":1,"name":"Telegram","hot":"yes"}]}
{"code":0,"msg":"Invalid API Token"}
Country standards align with ISO 3166-1 Alpha-2 codes.
| Param | Value | Required | Description |
|---|---|---|---|
| token | string | YES | API Access Token |
| serviceid | int | NO | Filter countires by Service ID |
https://api.globalsimc.com/serviceapi/getcountrylist/?token=TOKEN&serviceid=1
{"code":1,"data":[{"id":184,"iso":"US","code":"+1","name":"United States of America","hot":"yes","price":"From $0.1"},{"id":60,"iso":"DE","code":"+49","name":"Germany","hot":"no","price":"$0.6 - $2.5"}]}
{"code":0,"msg":"Invalid API Token"}
| Param | Value | Required | Description |
|---|---|---|---|
| token | string | YES | API Access Token |
| serviceid | int | YES | Target Service ID |
| iso | string | YES | Country Alpha-2 Code (e.g., US) |
https://api.globalsimc.com/serviceapi/getproviderlist/?token=TOKEN&serviceid=1&iso=US
{"code":1,"data":[{"id":1,"spid":3,"price":"$0.5","name":"SP1","hot":"yes","rate":"Med"},{"id":2,"spid":4,"price":"$0.3","name":"SP3","hot":"no","rate":"High"}]}
{"code":0,"msg":"Invalid API Token"}
| Param | Value | Required | Description |
|---|---|---|---|
| token | string | YES | API Access Token |
| serviceid | int | YES | Target Service ID |
| iso | string | NO | Country ISO code (Blank for random) |
| spid | int | NO | Specific Provider ID (Blank for random) |
| maxPrice | dec | NO | Set Price Cap (e.g. 1.5) |
https://api.globalsimc.com/serviceapi/getnumber/?token=TOKEN&serviceid=1&iso=US&spid=1&maxPrice=1.5
{"code":1,"data":{"orderid":"845916555742048473","tel":"+111186398","spid":3,"iso": "US","code": "+1","price":"0.5","expired":600}}
{"code":0,"msg":"Invalid API Token"}
Response contains the FULL SMS CONTENT. Please parse the dynamic verification code based on the target platform's format.
| Param | Value | Required | Description |
|---|---|---|---|
| token | string | YES | API Access Token |
| id | string | YES | Order ID (from Buy Number),Multiple id use "," symbol interval(up to 50 ids) |
* One Order
https://api.globalsimc.com/serviceapi/getcode/?token=TOKEN&id=845916555742048473
* Multiple Orders
https://api.globalsimc.com/serviceapi/getcode/?token=TOKEN&id=360816555757871481,517316555757732535
* One order
* Waiting (no sms)
{"code":1,"data":{"845916555742048473":{"expired":595,"sms":""}}}
* Received sms
{"code":1,"data":{"845916555742048473":{"expired":355,"sms":"Your code is 123456"}}}
* Multiple orders sample
{"code":1,"data":{"360816555757871481":{"expired":541,"sms":""},"517316555757732535":{"expired":527,"sms":"Your code is 123456"}}}
{"code":0,"msg":"Invalid API Token"}
Orders cannot be canceled during the initial 150-second period.
| Param | Value | Required | Description |
|---|---|---|---|
| token | string | YES | API Access Token |
| id | string | YES | Order ID (from Buy Number) |
https://api.globalsimc.com/serviceapi/cancelorder/?token=TOKEN&id=845916555742048473
{"code":1,"msg":"Success"}
{"code":0,"msg":"Unable to cancel within 150 seconds!"}
| Param | Value | Required | Description |
|---|---|---|---|
| token | string | YES | API Access Token |
https://api.globalsimc.com/serviceapi/getbalance/?token=TOKEN
{"code":1,"data":"1837.436"}
{"code":0,"msg":"Invalid API Token"}
Our API is updated regularly to ensure speed and stability. For batch integration questions, contact our developer support team.