Skip to main content
POST
/
accounts
/
{username}
/
channels
Update channels
curl --request POST \
  --url https://studio-api.onlytraffic.com/api/external/v1/accounts/{username}/channels \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "no_nude": "<string>",
  "tiktok": "<string>",
  "lingerie": "<string>",
  "light_nude": "<string>",
  "nude": "<string>"
}
'
{
  "success": true,
  "data": {
    "of_account_id": 123
  }
}

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.

Changing or clearing any channel URL force-resets that channel’s approved flag to false. The unchanged channels keep their existing approval. After updating, GET /accounts/{username}/channels returns the new approval state.

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_.-]+$

Body

application/json

Pass any subset of the 5 keys; omitted keys are not touched. Pass null or "" to clear a channel.

no_nude
string<uri> | null
Maximum string length: 255
tiktok
string<uri> | null
Maximum string length: 255
lingerie
string<uri> | null
Maximum string length: 255
light_nude
string<uri> | null
Maximum string length: 255
nude
string<uri> | null
Maximum string length: 255

Response

Updated

success
boolean
Example:

true

data
object