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.
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:
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. Our API provides comprehensive access to SMS, email, inbound messages, and domain management.
1
2
3
4
5
6
7
8
9
curl -X POST https://www.5centsms.com.au/api/v5/sms \
-H "Content-Type: application/json" \
-d '{
"key-secret": "Paste Key Secret here",
"key-id": "Paste Key ID here",
"sender": "0404123123",
"to": "Paste recipient number here",
"message": "Hello World"
}'
1
2
3
4
5
6
7
8
{
"error": "",
"messages": [{
"destination": "61412345678",
"id": "65abc123def456...",
"status": 1011,
"status_text": "Sending...",
"credits": 1
}]
}
Webhooks allow you to receive real-time notifications about events in your 5c SMS account. Instead of polling our API for updates, we'll send HTTP POST requests to your specified URL when events occur.
Receive notifications when your SMS messages are delivered, failed, or delayed. Perfect for tracking campaign success and handling failures.
Payload includes:
Get notified instantly when someone replies to your messages or sends a message to your Virtual Mobile Number.
Payload includes:
Receive alerts when your account balance drops below a specified threshold, ensuring you never run out of credits unexpectedly.
Payload includes:
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-directional, enabling sending and receiving messages, as well as delivery updates.
SMPP Features:
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