API Keys
Banking
Connect OnlyFans Account
Mass Messaging
Media Vault
Media Vault Lists
Notifications
Payouts
Post Comments
Post Labels
Posts
Public Profiles
Saved For Later (Messages)
Saved For Later (Posts)
Statistics | Reach
Statistics | Statements
Tracking Links
Transactions
Trial Links
Users
Connect OnlyFans Account
Start Authentication
Start the authentication process for a new account. Our systems will bypass Captcha and also ask you for 2FA code if required. All credentials are stored securely using bcrypt and only used during login.
POST
/
api
/
authenticate
Start Authentication
Copy
curl --request POST \
--url https://app.onlyfansapi.com/api/authenticate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email": "carley.paucek@example.net",
"password": "n^z3y[Ltkm}",
"proxyCountry": "es"
}'
Copy
{
"attempt_id": "auth_XXXXXXXXXXXXXXXXXXXXX",
"message": "Authentication process started. Query the polling_url to check the progress.",
"polling_url": "https://app.onlyfansapi.com/api/authenticate/auth_XXXXXXXXXXXXXXXXXXXXX"
}
Authorizations
You can retrieve your token by visiting the OnlyFansAPI Console and clicking API Keys -> Create API Key.
Body
application/json
Response
200 - application/json
The response is of type object
.
Start Authentication
Copy
curl --request POST \
--url https://app.onlyfansapi.com/api/authenticate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email": "carley.paucek@example.net",
"password": "n^z3y[Ltkm}",
"proxyCountry": "es"
}'
Copy
{
"attempt_id": "auth_XXXXXXXXXXXXXXXXXXXXX",
"message": "Authentication process started. Query the polling_url to check the progress.",
"polling_url": "https://app.onlyfansapi.com/api/authenticate/auth_XXXXXXXXXXXXXXXXXXXXX"
}
Assistant
Responses are generated using AI and may contain mistakes.