ofapisv1
integration

OnlyFans + Make.com

ofapis is a standard REST API, so it works in Make.com today through the built-in HTTP app — no custom module required. You build OnlyFans automations visually on Make's scenario canvas and trigger them on a schedule or from any of Make's 2,000+ other apps.

The module you need: HTTP → Make a request

Make ships several HTTP variants. Pick HTTP → Make a request (the general one). The cleaner option for repeated calls is HTTP → Make an API Key Auth request, which stores the token once so it never appears in the scenario blueprint.

  1. Add the HTTP → Make a request module.
  2. URL: an ofapis endpoint, e.g. https://api.ofapis.com/api/public/v1/me to verify the connection.
  3. Method: GET to read, POST to send.
  4. Headers: add Authorization = Bearer ofapis_sk_....
  5. Body type = Raw, Content type = JSON (application/json), then paste your JSON.
  6. Enable Parse response so downstream modules can map the returned fields.
POST https://api.ofapis.com/api/public/v1/accounts/42/chats/123/messages
Authorization: Bearer ofapis_sk_...
Content-Type: application/json

{ "text": "Thanks for subscribing!" }

Worked example: new sheet row → welcome message

Trigger module: Google Sheets → Watch New Rows. Router optional. Action: HTTP → Make a request that maps the row's chat_id into the URL and the fan's name into the body. Turn on the scenario's built-in error handler with a Break directive and automatic retries — since ofapis doesn't charge for failed calls, a retried expired-session error is free, and Make will replay it on the next cycle.

Three scenarios to build

FAQ

Is there a native Make app for OnlyFans?

No, and you don't need one — the generic HTTP module reaches every ofapis endpoint, from messaging to vault media.

Which HTTP module should I use?

Use HTTP → Make a request for one-off calls, or HTTP → Make an API Key Auth request to store the Bearer token once and keep it out of the exported blueprint.

How do I stop paying for errors?

You already don't. ofapis only bills successful calls, so Make's automatic retries on an expired session or upstream error cost zero credits. See pricing.

Where do I get a token?

Create one free. The Free plan includes 250 credits per month — enough to build and test a full scenario.

Related: Zapier · n8n · all integrations

Related guides

All guides
Start free — 250 credits, no card
Generate a token and make your first call in minutes.
Get started