Skip to main content
PATCH
/
v2
/
access
/
self
/
me
Update current user profile
curl --request PATCH \
  --url https://api-next.ofauth.com/v2/access/self/me \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <api-key>' \
  --data '
{
  "name": "<string>",
  "about": "<string>"
}
'
{
  "id": 123,
  "username": "<string>",
  "name": "<string>",
  "isVerified": true,
  "avatar": "<string>",
  "subscribersCount": 123,
  "postsCount": 123,
  "photosCount": 123,
  "videosCount": 123
}

Authorizations

apiKey
string
header
required

Headers

x-connection-id
string

Connection ID for managed sessions

x-of-user-id
string

OnlyFans user id for direct sessions (optional override)

OnlyFans cookie header for direct sessions (must include auth_id and fp values)

x-of-bc
string

OnlyFans x-bc header for direct sessions (optional override)

x-of-user-agent
string

User agent to use when proxying requests (required when not using x-connection-id)

Body

application/json
name
string
about
string

Response

Successful response

id
number
required
username
string
required
name
string
required
isVerified
boolean
avatar
string | null
subscribersCount
number
postsCount
number
photosCount
number
videosCount
number