Analytics - Financial
Get Profitability
Calculate profitability for creators including revenue, costs, commissions, and margins for a specific month.
post/api/analytics/financial/profitability
Request body
Example request
{
"account_ids": [
"acc_abc123",
"acc_def456"
],
"year": 2024,
"month": 6
}Response
Example response
[
{
"creator_id": 12345,
"name": "Creator Name",
"gross_revenue": 10000,
"net_revenue": 8000,
"total_costs": 500,
"commission": 1500,
"profit": 6000,
"margin": 75
}
]