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

Request body

emailstring required

The email address of the OnlyFans account

passwordstring required

The password of the OnlyFans account

proxyCountry'us' | 'uk' | 'de' | 'es' | 'fr' | 'it' | 'ua' | 'pl' | 'ro' | 'cz' | 'hu' | 'sk' required

The country of the proxy server you want to use. Eg. "us" for United States

Example request

{
  "email": "jalyn75@example.net",
  "password": "vXIA}fx5Ek:",
  "proxyCountry": "pl"
}

Response

attempt_idstring
messagestring
polling_urlstring

Example response

{
  "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"
}

Changes