Skip to main content
POST
/
accounts
Create
curl --request POST \
  --url https://studio-api.onlytraffic.com/api/external/v1/accounts \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "username": "<string>",
  "agency_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "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.

Verification flow

To attach an OnlyFans account, prove you control it by adding a one-day marker to the bio.
  1. Compute today’s UTC marker in the format OT-MM-DD-YYYY. Example for April 10, 2026: OT-04-10-2026.
  2. Edit your OnlyFans profile and paste the marker anywhere in the About field.
  3. Call this endpoint with the OnlyFans username. The server fetches the live profile and checks the bio.
  4. On a successful 201 response, remove the marker from your bio. The server doesn’t enforce removal; do it yourself.
The marker rotates daily (UTC), so a stale marker from a previous day won’t pass verification.

Authorizations

X-API-Key
string
header
required

Your API key from the Studio Dashboard

Body

application/json
username
string
required
Required string length: 3 - 30
Pattern: ^[a-zA-Z0-9_.-]+$
agency_id
string<uuid> | null

Optional agency uuid to attach the new account to.

Response

Account attached.

success
boolean
Example:

true

data
object