Account & billing  /  List invoices

List invoices

GET/v1/invoices

Returns the account's invoices. Amounts are in cents, and trial invoices appear as 0 with status paid. The pdf_url and hosted_url are Stripe-hosted and session-independent, so you can surface them to the user directly.

Response fields
id
string
Prefixed Stripe invoice id, e.g. inv_1TP8….
number
string | null
Human-readable invoice number.
date
timestamp | null
When the invoice was issued.
amount
integer
Total in cents. Trial invoices are 0.
currency
string
ISO currency code, e.g. usd.
status
string
paid, open, past_due, uncollectible, void, or draft.
pdf_url
string | null
Stripe-hosted PDF link. Safe to show the user directly.
hosted_url
string | null
Stripe-hosted invoice page. Safe to show directly.
GET/v1/invoices
curl https://app.converly.io/api/v1/invoices \
  -H "Authorization: Bearer sk_live_…"
200 OK
{
  "data": [
    {
      "id": "inv_1TP8…",
      "number": "8Z2X4M66-0001",
      "date": "2026-04-22T21:35:41.000Z",
      "amount": 1900,
      "currency": "usd",
      "status": "paid",
      "pdf_url": "https://pay.stripe.com/invoice/…/pdf",
      "hosted_url": "https://invoice.stripe.com/i/…"
    }
  ]
}