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.
- Add the HTTP → Make a request module.
- URL: an ofapis endpoint, e.g.
https://api.ofapis.com/api/public/v1/meto verify the connection. - Method:
GETto read,POSTto send. - Headers: add
Authorization=Bearer ofapis_sk_.... - Body type = Raw, Content type =
JSON (application/json), then paste your JSON. - 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
- Sheet row → mass DM. A new row in a campaign sheet fires a mass DM / mailing to a chosen segment. Add a Filter so only rows tagged "ready" send.
- Scheduled scenario → queued posts. Set the scenario to run daily; pull tomorrow's content from a data store and POST scheduled posts.
- ofapis webhook → Custom webhook → notify. Create a Make Custom webhook, point an ofapis signed event at its URL, and fan out to Slack, email or a CRM on new-subscriber and new-message events.
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