Developer Platform

Build on our
robust API

Integrate WhatsApp directly into your ERP, CRM, or proprietary software. GB Tick handles the Meta API complexities, billing, and compliance so you can focus on building.

POST https://api.gbtick.com/v1/messages
{
"to": "+91 XXXXX X3210",
"type": "template",
"template": {
"name": "order_shipped_v2",
"language": "en",
"components": [...]
}
}
// 200 OK Response
{"message_id": "wamid.HBgL..."}
⚙️

RESTful APIAvailable

A clean, documented, and versioned REST API that abstracts away the complexities of the official Meta Graph API.

  • Send/receive messages programmatically
  • Manage templates and approvals
  • Contact and opt-in management
GET /v1/contacts?status=opted_in
{
"data": [
{
"id": "contact_123",
"phone": "+91XXXXXX3210",
"name": "Riya Mehta"
}
],
"has_more": false
}
🪝

Real-time WebhooksAvailable

Get instantly notified when messages are delivered, read, or when a customer replies. Reliable delivery with automatic retries.

  • Message status updates (sent, delivered, read)
  • Inbound message routing
  • Secure payload signing
// Webhook payload: message.received
{
"event": "message.received",
"contact": {
"phone": "+91XXXXXX3210"
},
"message": {
"type": "text",
"body": "I need pricing info"
}
}