SDK
Call any SDK method
Generic passthrough that maps onto of.{resource}.{method}(...args) on the connected account. Accepts positional args via { "args": [...] }, a bare array, or a single object body (most methods). GET is supported for read methods — the query string becomes a single object arg. Requires sdk:call. Enumerate valid resource/method pairs with GET /v1/sdk/methods.
POST
Documentation Index
Fetch the complete documentation index at: https://docs.onlyfanskit.dev/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Your API key, sent as Authorization: Bearer <key>.
Path Parameters
Connected account id.
SDK resource, e.g. posts, messages, earnings.
Method on the resource, e.g. feed, send, balances.
Body
application/json
Response
Whatever the SDK method returned
Previous
Stream realtime events (SSE)Server-Sent Events stream of the account's realtime activity — new messages, subscriptions, tips, posts, streams, and more. Each SSE message carries the OnlyFans event name as the `event:` field and `{ data, meta, ts }` as `data:`. Send `Accept: text/event-stream`. Clients that send `Last-Event-ID` (or `?last_event_id=`) resume from the next event after that id; otherwise the stream delivers only events that arrive after connecting. The stream emits `ready` on connect and periodic `heartbeat` events. Requires `accounts:read`.
Next