OnlyFans API
FanslyConnect Fansly Account

Poll Authentication Status

Poll the status of a Fansly authentication process. When verification is required, needs_code is true and twofa_type indicates whether the code comes from the creator's email (2) or authenticator app (0). Submit the code via the Submit 2FA endpoint.

GET
/api/fansly/authenticate/{fanslyAccount}
AuthorizationBearer <token>

Get your API Key from OnlyFansAPI Console - https://app.onlyfansapi.com/api-keys

In: header

Path Parameters

fanslyAccount*string

The Fansly account ID returned by Start Authentication

Response Body

application/json

curl -X GET "https://app.onlyfansapi.com/api/fansly/authenticate/fansly_acct_XXXXXXX"
{
  "account_id": "fansly_acct_123",
  "display_name": "My Fansly",
  "status": "challenge-email",
  "is_authenticated": false,
  "needs_code": true,
  "twofa_type": 2,
  "masked_email": "t**@e*****.com",
  "last_error": null,
  "fansly_user_data": null
}