DocumentationAPI Reference
MobiGate Documentation
This page provides the essentials for using the MobiGate API securely in production, along with an endpoint reference.
Getting Started
After signing up, sign in to your customer panel and create an API key on the API page. Authenticate requests by sending this key in the Authorization header.
Base URL
https://api.mobigate.io/v1
All endpoints are served under this versioned base URL.
Authorization Header
Authorization: Bearer YOUR_API_KEY
Do not expose API keys on the client; use them server-side.
Endpoint Reference
The endpoints below are shown as examples. Exact paths and parameters may vary based on your API configuration in the panel.
Endpoint
https://api.mobigate.io/v1/proxies
Parameters
page: number
Pagination.
limit: number
Items per page.
* Required
Success Codes
200 OK
Error Codes
401 Unauthorized429 Too Many Requests500 Internal Server Error
Example Request
curl -X GET \ https://api.mobigate.io/v1/proxies \ -H "Authorization: Bearer YOUR_API_KEY"
Example Response
{
"ok": true,
"data": [
{
"id": "proxy_123",
"country": "tr",
"type": "mobile",
"host": "tr1.mobigate.io",
"port": 10000
}
]
}