Send SMS Messages. For FREE!

Our API makes it easy for developers to send and receive ad-supported SMS messages from any website.

Send Ad-free Messages

Want to use all 160 chars. of each message? Sign up for a monthly ad-free plan.
From $9.95/month.

Visit our Google Group
Discuss with other developers, get support and leave us feedback.

REST API

Table of Contents

send_message

To send a message to a single user, you need to create an HTTP Post Request to:

Endpointhttps://api.zeepmobile.com/messaging/2008-07-14/send_message

Example HTTP Post Request

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]

Sending an ad-free message

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

blast_message

To send a message to all current subscribers, you need to create an HTTP Post Request to:

Endpointhttps://api.zeepmobile.com/messaging/2008-07-14/blast_message

Example HTTP Post Request

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]

Sending an ad-free blast

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