Skip to main content
POST
/
accounts
/
{username}
Update
curl --request POST \
  --url https://studio-api.onlytraffic.com/api/external/v1/accounts/{username} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "client_status": "active",
  "note": "Top performer this quarter",
  "tags": [
    "blonde",
    "fitness",
    "tattoos"
  ],
  "of_list_enabled": true,
  "of_list_template": "{source} {date}"
}
'
{
  "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.

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

Editable fields for an attached OnlyFans account.

client_status
enum<string>
Available options:
active,
archived
note
string | null
Maximum string length: 1000
tags
string[]

Up to 20 model tag slugs. Allowed values are dynamic. Invalid slugs return 422.

Maximum array length: 20
Example:
["blonde", "fitness", "tattoos"]
of_list_enabled
boolean

When true, fans coming through your campaigns are auto-added to named OnlyFans lists generated from of_list_template.

of_list_template
string | null

Template for the OnlyFans list name. Macros are substituted per campaign at the moment a fan is added: {source}, {date}, {pricing_model}, {marketer_name}, {public_id}. The rendered name is capped at 60 characters.

Maximum string length: 60
Example:

"{source} {date}"

Response

Updated

success
boolean
Example:

true

data
object