> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List invoices handlers

> **Required scope:** read

**Required scope:** `read`

### Response

`object`

<ResponseField name="invoices" type="object[]" required />

### Status codes

| Code  | Meaning                                                 |
| ----- | ------------------------------------------------------- |
| `200` | The 12 most recent invoices, passed through from Stripe |
| `401` | Unauthorized — missing or invalid credentials           |
| `403` | Forbidden — the key/token lacks the required scope      |
| `404` | No Stripe customer for this org                         |
| `429` | Rate limited — see Retry-After / X-RateLimit-Reset      |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.nsr.stateset.com/api/v1/billing/invoices' \
    --header "X-API-Key: $STATESET_NSR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "invoices": [
      {}
    ]
  }
  ```
</ResponseExample>
