Get started
API Endpoint https://mtn.ictcentervas.work/
The ICT Center Liberia USSD API enables developers and service providers to integrate USSD-based applications with the ICT Center platform. The API supports session management, user interaction, and response handling for mobile users dialing a USSD code.
To use this API, you need an API key. Please contact us at info@sms4liberia.com to get your own API key.
Already have an account? Login
get characters
# Here is a curl example
curl \
-X POST https://mtn.ictcentervas.work/ \
-F 'secret_key=your_api_key' \
-F 'dialogueid=qw345rtrte' \
-F 'name=home' \
-F 'serviceCode=4422' \
-F 'msisdndigits=23188603467' \
-F 'text=1*1' \
To get characters you need to extract the POST variables sent to the respective callback url.
QUERY PARAMETERS
| Field | Type | Description |
|---|---|---|
| secret_key | String | Your API key. |
| dialogueid | String | Unique identifier for the USSD session |
| name | String | The name of the route |
| serviceCode | String | USSD code dialed by the user |
| msisdndigits | String | User's mobile number |
| text | String | User input separated by * |