---
title: "Get a creator's checkout-link payment by invoice number"
method: GET
path: "/creators/{creatorUserUuid}/checkout-links/payments/{invoiceNumber}"
---

# Get a creator's checkout-link payment by invoice number

`GET /creators/{creatorUserUuid}/checkout-links/payments/{invoiceNumber}`

Fetch a single checkout-link payment by its Fanvue `invoiceNumber`, scoped to the specified creator. Returns 404 if the payment does not exist or does not belong to this creator.

## Path parameters

- `creatorUserUuid` string, uuid, required
- `invoiceNumber` string, required — Fanvue payment identifier (invoice number).

## Headers

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

## Response `200`

The checkout-link payment

- object
  - `invoiceNumber` string, required — Fanvue's unique payment identifier. Use this as the idempotency key for fulfilment.
  - `status` 'pending' | 'succeeded' | 'failed', required — Settlement status of the payment.
  - `billingReason` 'one_time' | 'subscription_initial' | 'subscription_renewal', required — What the payment was for: a one-off purchase, the first payment of a subscription, or a subscription renewal. Matches the `billing_reason` on the checkout_link.payment.* webhook.
  - `clientReferenceId` string, nullable, required — The merchant-supplied reference passed at checkout via `?client_reference_id=`. Use it to match the payment to your own order/customer.
  - `gross` number, required — Gross amount the buyer paid, in minor units.
  - `net` number, nullable, required — Creator net amount after fees, in minor units.
  - `fees` object, required
    - `fanvueFee` number, nullable, required — Fanvue fee, in minor units.
    - `transactionFee` number, nullable, required — Payment processing fee, in minor units.
  - `currency` string, nullable, required — ISO currency code of the amounts.
  - `transactionId` string, nullable, required — Payment processor transaction reference.
  - `createdAt` string, date-time, required — When the payment was created.
  - `paidAt` string, date-time, nullable, required — When the payment settled, if it did.
  - `checkoutLink` object, required
    - `uuid` string, nullable, required — UUID of the checkout link used.
    - `name` string, nullable, required — Name of the checkout link / offer.
    - `productUuid` string, nullable, required — UUID of the purchased product.
    - `productPriceUuid` string, nullable, required — UUID of the purchased product price.
  - `purchaser` object, required
    - `uuid` string, nullable, required — UUID of the purchasing Fanvue user.
    - `email` string, nullable, required — Email of the purchasing Fanvue user.
  - `metadata` object, required — Arbitrary merchant metadata passed at checkout via `?metadata[key]=value`.

## Other responses

- `400` — Bad Request - API version not supported OR validation failed 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)
