---
title: "Get Receipts"
method: GET
path: "/api/billing/receipts"
tags: ["Billing"]
---

# Get Receipts

`GET /api/billing/receipts`

Get Stripe invoice receipts with PDF download links.

These are formal Stripe invoices from payment_receipts — distinct from
the per-charge receipt_url available in transactions.metadata.
Cached 5 minutes (receipts rarely change).

## Query parameters

- `limit` integer

## Headers

- `X-API-Key` string, nullable

## Response `200`

Successful Response

- PaymentReceiptsResponse
  - `success` boolean
  - `message` string, nullable
  - `data` PaymentReceipt[]
    - `id` string, required
    - `receipt_number` string, nullable
    - `amount_usd` number, required — Payment amount in USD
    - `description` string, nullable
    - `status` 'completed' | 'pending' | 'failed' | 'refunded', required — completed, pending, failed, refunded
    - `stripe_payment_intent_id` string, nullable
    - `stripe_invoice_id` string, nullable
    - `invoice_pdf_url` string, nullable — Stripe invoice PDF download URL
    - `payment_method` string, nullable
    - `payment_method_last4` string, nullable
    - `paid_at` string, nullable
    - `created_at` string, required

## Other responses

- `422` — Validation Error
- `500` — Internal Server Error

---

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