Skip to main content
GET
/
creators
/
{creatorUserUuid}
/
insights
/
earnings
Get earnings data for a creator
curl --request GET \
  --url https://api.fanvue.com/creators/{creatorUserUuid}/insights/earnings \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Fanvue-API-Version: <x-fanvue-api-version>'
{
  "data": [
    {
      "date": "2024-01-15T00:00:00.000Z",
      "gross": 5000,
      "net": 4250,
      "currency": "USD",
      "source": "subscription",
      "transactionOrderId": "FV-ORDER-123",
      "transactionOrderStatus": "availableForPayout",
      "user": {
        "uuid": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
        "handle": "sarah-jones",
        "nickname": "SarahK",
        "displayName": "Sarah Jones",
        "isTopSpender": true,
        "avatarUrl": "https://media.fanvue.com/avatars/example-avatar.jpg",
        "registeredAt": "2024-01-10T12:00:00.000Z"
      }
    },
    {
      "date": "2024-01-14T00:00:00.000Z",
      "gross": 2500,
      "net": 2125,
      "currency": "USD",
      "source": "tip",
      "transactionOrderId": "FV-ORDER-124",
      "transactionOrderStatus": "pendingBalance",
      "user": {
        "uuid": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
        "handle": "mike-smith",
        "nickname": null,
        "displayName": "Mike Smithly",
        "isTopSpender": false,
        "avatarUrl": "https://media.fanvue.com/avatars/example-avatar.jpg",
        "registeredAt": "2024-01-10T12:00:00.000Z"
      }
    }
  ],
  "nextCursor": "eyJkYXRlIjoiMjAyNC0wMS0xNVQwMDowMDowMC4wMDBaIn0"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Fanvue-API-Version
string
default:2025-06-26
required

API version to use for the request

Example:

"2025-06-26"

Path Parameters

creatorUserUuid
string<uuid>
required

Query Parameters

startDate
string<date-time>

Start date as ISO 8601 datetime string with optional timezone offset (e.g., 2024-10-20T00:00:00+01:00 or 2024-10-20T00:00:00Z).

endDate
string<date-time>

End date as ISO 8601 datetime string with optional timezone offset (e.g., 2024-10-25T00:00:00+01:00 or 2024-10-25T00:00:00Z). Non-inclusive - data before this date is included.

source
enum<string>[]

Comma-separated list of earning sources

Available options:
all,
affiliate,
appStore,
checkoutLink,
mediaLink,
message,
post,
referral,
renewal,
subscription,
tip,
giveaway
cursor
string

Cursor for pagination - If given, pass nextCursor to get the next page.

size
number
default:20

Number of items to return per page (1-50, default: 20)

Required range: 1 <= x <= 50

Response

Creator earnings data with cursor pagination

data
object[]
required
nextCursor
string | null
required

Cursor for next page, null if no more data