---
title: "Get spending reversal data for a creator"
method: GET
path: "/creators/{creatorUserUuid}/insights/spending"
---

# Get spending reversal data for a creator

`GET /creators/{creatorUserUuid}/insights/spending`

Returns cursor-paginated reversal invoice data for the specified creator over a specified time period. Includes refund and chargeback transactions.

## 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` SpendingType[] — Comma-separated list of spending sources
- `cursor` string — Cursor for pagination - If given, pass `nextCursor` to get the next page.
- `size` number — Number of items to return per page (1-50, default: 20). When omitted on a cursor request, the size from the previous page (carried in the cursor) is reused.
- `fanUuid` string, uuid — Restrict results to reversals belonging to a single fan on this creator

## Headers

- `X-Fanvue-API-Version` string, required

## Response `200`

Spending reversal data with cursor pagination

- object
  - `data` object[], required
    - `date` string, required — Payment date as UTC ISO 8601 datetime string
    - `gross` number, required — Amount the fan originally paid, converted to USD cents
    - `net` number, required — Creator's reversal (refund/chargeback) impact after Fanvue fees, in USD cents
    - `currency` string, nullable, required — Informational only — the local currency the fan originally paid in (e.g. 'BRL'). The gross and net amounts are already converted to USD cents regardless of this value.
    - `source` 'refund' | 'chargeback', required
    - `messageUuid` string, uuid — Message UUID when the reversed payment was a message transaction
    - `postUuid` string, uuid — Post UUID when the reversed payment was a post
    - `user` object, nullable, required — Fan's user information (null for transactions without a fan like referrals, affiliates)
      - `uuid` string, uuid, required
      - `handle` string, required
      - `displayName` string, required
      - `nickname` string, nullable, required
      - `isTopSpender` boolean, required
  - `nextCursor` string, nullable, required — Cursor for next page, null if no more data

## Other responses

- `400` — Bad Request - API version not supported OR validation failed (dates, sources, cursor, pagination) OR invalid UUID
- `401` — Unauthorized Response
- `403` — Unauthorized Response
- `404` — Not Found Response
- `410` — API version no longer supported (sunset)
- `429` — Too many requests - rate limit exceeded

---

[API](https://skmtc.net/fanvue/apis/fanvue-api.md) · [All operations](https://skmtc.net/fanvue/apis/fanvue-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fanvue/fanvue-api/revisions/c5ddcd5c7e72/schema)
