Software Integration Services and API

The 5c SMS API enables messaging directly from your software. Integrate notifications into your scheduling software, confirm appointments automatically through reply webhooks or automatically schedule marketing campaigns.


START YOUR FREE TRIAL

software integration service

Looking to bring messaging to your application but you are not a developer? Our Software Integration Service brings our developers to you to build a custom integration with your software for you. Our developers can integrate the messaging with most open source or custom built platforms.

Integrations can be built to:

  • Send or schedule single and bulk messages.
  • Check and report on message delivery statuses.
  • Receive replies to your messages.
  • Process messages to your Virtual Mobile Number.
  • Check your account balance and recharge.
  • Much more...
REQUEST A QUOTE

Our HTTP API

The 5c SMS API allows programmers and developers to connect directly to our gateway. Connect to the service with a HTTP POST or GET request, which is available from most programming environments. The API includes access to all of our of our services including Messaging and Delivery Reports.

Request

1
2
3
4
5
6
curl -X POST 'https://www.5centsms.com.au/api/v4/sms' \
	--data-urlencode 'sender=YourBusiness' \
	--data-urlencode 'to=0403754099' \
	--data-urlencode 'message=Hi There!' \
	-H 'User: user@email.com' \
	-H 'Api-Key: abcdefghijklmnopqrstuvwxyz'

					

Response

1
2
3
4
5
6
7
"messages": [{
	"destination": "0403754099",
	"id": "ab123456789",
	"status": "1011",
	"status_text": "Sending...",
	"credits": 1
}]

					
Short Message Peer-to-Peer

Short Message Peer-to-Peer (SMPP)

5c SMS also supports SMPP, the standard protocol used by many messaging applications. SMPP enables direct integration with legacy messaging applications as well as bulk or large scale messaging. Our SMPP API is bi-driectional, enabling sending and receiveing messages, as well as delivery updates.

Ready to integrate messaging into your application? Contact us now for a quote for custom integration, or do it yourself through our API.

CONTACT US     API DOCS & SAMPLE CODE