Skip to main content
The OnlyTraffic Studio API lets you retrieve data about your subscribers, CPL orders, and CPC orders. Use it to build integrations, dashboards, and automated workflows.

Base URL

https://studio-api.onlytraffic.com/api/external/v1

Authentication

All requests require the X-API-Key header. Create your API key in the Studio Dashboard.
curl https://studio-api.onlytraffic.com/api/external/v1/subscribers \
  -H "X-API-Key: your-api-key-here"
See the Authentication page for error codes and detailed setup.

Available Endpoints

Rate Limits

1,000 requests per hour per account. If exceeded, the API returns 429 with a Retry-After header.

Pagination

All list endpoints return 100 items per page. Use the page query parameter to navigate through results.
{
  "pagination": {
    "page": 1,
    "total": 150,
    "total_pages": 2
  }
}

Response Format

All responses follow a consistent structure:
{
  "success": true,
  "data": [ ... ],
  "pagination": { ... }
}