Fetch Messages

Fetch all messages for an OnlyFans account.

POST https://api.noauth.cc/onlyfans/messages

This request will fetch the messages for a specific chat. You can set a limit for how many you want to fetch and also loop through more.

If the response contains "hasMore": true, then you have to call the endpoint again with an offset_id if you wish to get older messages.

Message order: Newest - Oldest

Headers

NameTypeDescription

x-api-key*

String

NoAuth API Key

Request Body

NameTypeDescription

session_id*

String

OF Auth

x_bc_token*

String

OF Auth

user_agent*

String

OF Auth

user_id*

String

OF Auth

proxy*

String

Example: http://user:pass@host:port

client_id*

Integer

Example: 9523935

offset_id

Integer

Message to start fetching from. Example: 2859205929504

limit

Integer

Amount of messages to fetch.

Example: 100

{
  "status": "success",
  "message": "Onlyfans response.."
}

Last updated