Our API makes it easy for developers to send and receive ad-supported SMS messages from any website.
Want to use all 160 chars. of each message? Sign up for a monthly ad-free plan.
From $9.95/month.
To send a message to a single user, you need to create an HTTP Post Request to:
| Endpoint | https://api.zeepmobile.com/messaging/2008-07-14/send_message |
POST /messaging/2008-07-14/send_message HTTP/1.1 Host: api.zeepmobile.com Authorization: Zeep [zeep-api-key]:[header-signature] Date: [Current HTTP-date] Content-Type: application/x-www-form-urlencoded Content-Length: [number of characters in the next line] user_id=[user_id]&body=[message body]
To send an ad-free message, add &ad_free=true to the last line of the post request. This will only work when you're signed up for an ad-free plan.
user_id=[user_id]&body=[message body]&ad_free=true
To send a message to all current subscribers, you need to create an HTTP Post Request to:
| Endpoint | https://api.zeepmobile.com/messaging/2008-07-14/blast_message |
POST /messaging/2008-07-14/blast_message HTTP/1.1 Host: api.zeepmobile.com Authorization: Zeep [zeep-api-key]:[header-signature] Date: [Current HTTP-date] Content-Type: application/x-www-form-urlencoded Content-Length: [number of characters in the next line] body=[message body]
To send an ad-free blast, add &ad_free=true to the last line of the post request. This will only work when you're signed up for an ad-free plan. Sending an ad-free blast counts as one ad-free message for each user that gets blasted.
body=[message body]&ad_free=true