Billing

List receipts

The orders behind the top-ups, newest first, as the merchant of record (Polar) holds them: this workspace's share of the billing customer's newest 100 orders. Empty before the first top-up.

GET
/v1/billing/invoices
AuthorizationBearer <token>

API key minted via POST /v1/api-keys (format mk_live_...)

In: header

Response Body

application/json

application/json

curl -X GET "https://api.mentio.dev/v1/billing/invoices"
{
  "data": [
    {
      "id": "string",
      "createdAt": "string",
      "status": "string",
      "paid": true,
      "totalAmount": 0,
      "currency": "string",
      "billingReason": "string"
    }
  ]
}
{
  "error": {
    "code": "unauthorized",
    "message": "string",
    "requestId": "string",
    "retryAfterSeconds": 0
  }
}