Skip to main content
GET
/
accounts
/
{username}
/
content
Content
curl --request GET \
  --url https://studio-api.onlytraffic.com/api/external/v1/accounts/{username}/content \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "preview": [
      {
        "id": 123,
        "sort": 123,
        "size_bytes": 123,
        "thumbnail_url": "<string>",
        "original_url": "<string>"
      }
    ],
    "gg": [
      {
        "id": 123,
        "sort": 123,
        "size_bytes": 123,
        "thumbnail_url": "<string>",
        "original_url": "<string>"
      }
    ],
    "total_size_bytes": 123,
    "urls_expire_in_seconds": 259200
  }
}

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

Path Parameters

username
string
required

OnlyFans username of the model owned by your account.

Maximum string length: 30
Pattern: ^[a-zA-Z0-9_.-]+$

Response

Successful response

success
boolean
Example:

true

data
object