fans
table entry) linked to a creator’s account.
Authentication
This endpoint requires authentication via bearer token representing a valid user session managed by Supabase Auth (cookies).Testing Note: Requires a valid fan ID and user session.
Request
The username of the creator’s account associated with the fan.
The OnlyFans ID (
of_id
) of the fan to retrieve.Bearer token for authentication. Format:
Bearer YOUR_JWT_TOKEN
Response
Indicates the result status (e.g., “Success”). Often implicitly 200 OK.
A descriptive message about the result (e.g., “Success”).
The fan data object from the
fans
table.Error Codes
Status Code | Description | Example Message |
---|---|---|
400 | Missing username or of_id query parameters. | ”Username and of_id are required” |
401 | Invalid or missing authentication token. | ”Unauthorized” |
404 | Creator account associated with username not found. | ”Account not found” |
404 | Fan with the specified of_id not found for the account. | ”Fan not found” |
500 | Internal server error during processing. | ”Internal server error” |
Code Examples
Notes
- This endpoint requires both the fan’s OnlyFans ID (
of_id
) and the username of the creator account they are associated with. - It retrieves the fan’s complete record from the
fans
table.
Headers
Bearer token for authentication (JWT)
Query Parameters
The username of the creator's account associated with the fan.
The OnlyFans ID (of_id
) of the fan to retrieve.