We just released our native n8n integration!ยป Try now
OnlyFans API
Analytics - Financial

Get Profitability

Calculate profitability for creators including revenue, costs, commissions, and margins for a specific month.

POST
/api/analytics/financial/profitability
AuthorizationBearer <token>

Get your API Key from OnlyFansAPI Console - https://app.onlyfansapi.com/api-keys

In: header

Request Body

application/json

account_ids*array<string>

Array of account prefixed IDs

year*integer

The year to calculate profitability for

month*integer

The month to calculate profitability for (1-12)

Response Body

application/json

curl -X POST "https://app.onlyfansapi.com/api/analytics/financial/profitability" \  -H "Content-Type: application/json" \  -d '{    "account_ids": [      "acc_abc123",      "acc_def456"    ],    "year": 2024,    "month": 6  }'
[
  {
    "creator_id": 12345,
    "name": "Creator Name",
    "gross_revenue": 10000,
    "net_revenue": 8000,
    "total_costs": 500,
    "commission": 1500,
    "profit": 6000,
    "margin": 75
  }
]