Skip to main content
GET
/
agencies
List
curl --request GET \
  --url https://studio-api.onlytraffic.com/api/external/v1/agencies \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": [
    {
      "uuid": "8c1e3b80-7aef-4d26-9ed9-3a1f0b2c91ab",
      "name": "Bright Studio",
      "slug": "bright-studio",
      "code": "BST",
      "status": "active",
      "description": "<string>",
      "website": "<string>",
      "tg_contact": "<string>",
      "email": "jsmith@example.com",
      "email_published": true,
      "model_commission": 123,
      "model_commission_max": 123,
      "model_commission_custom": "<string>",
      "model_requirements": "<string>",
      "platforms": [],
      "offered_services": [],
      "founded": "2023-12-25",
      "avatar_url": "<string>",
      "header_url": "<string>",
      "models_countries": [
        "<string>"
      ],
      "topagencies_publish": true,
      "models_count_bound": 12,
      "created_at": "2023-11-07T05:31:56Z",
      "created_at_ts": 123,
      "updated_at": "2023-11-07T05:31:56Z",
      "updated_at_ts": 123
    }
  ],
  "pagination": {
    "page": 1,
    "page_size": 50,
    "total": 150,
    "total_pages": 3,
    "has_next": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://onlytraffic.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Your API key from the Studio Dashboard

Query Parameters

page
integer
default:1

Page number, 1-indexed.

Required range: x >= 1
page_size
integer
default:50

Items per page. Default 50, max 100.

Required range: 1 <= x <= 100
uuid
string<uuid>

Filter to one agency by UUID.

slug
string

Filter to one agency by slug.

Maximum string length: 128

Substring match across name, slug, and code.

Maximum string length: 128
status
enum<string>
Available options:
active,
moderation,
disabled
topagencies_publish
enum<string>
Available options:
true,
false,
1,
0
sort
enum<string>
default:created_at_desc

Sort order.

  • created_at_desc: newest agencies first (default).
  • created_at_asc: oldest agencies first.
  • updated_at_desc: most recently updated first.
  • updated_at_asc: least recently updated first.
  • name_asc: by name A→Z.
  • name_desc: by name Z→A.
Available options:
created_at_desc,
created_at_asc,
updated_at_desc,
updated_at_asc,
name_asc,
name_desc

Response

Successful response

success
boolean
Example:

true

data
object[]
pagination
object

Page-based pagination, returned by every list endpoint that isn't a cursor feed.