Integration
REST API
An API that follows REST architectural style, using HTTP methods (GET, POST) and JSON for communication. The standard for modern web APIs.
A REST API (Representational State Transfer) is a web service that follows REST principles: stateless communication, standard HTTP methods, and resource-based URLs.
MySMSGate REST API
MySMSGate provides a simple REST API with one main endpoint:
POST /api/v1/send — Send an SMS
GET /api/v1/status — Check device status
GET /api/v1/balance — Check SMS balance
GET /api/v1/history — Get SMS historyAll requests use JSON and Bearer token authentication. No SDK required — works with any language that can make HTTP requests (curl, Python, Node.js, PHP, Go, Ruby).