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

# List refunds

> GET /api/refunds — paginated list of your refund requests.

Returns your merchant's refund requests, paginated.

<Note>
  Rate limited to **1 request per minute** — intended for back-office reconciliation, not live polling. Use [get refund](/api-reference/get-refund) to track an individual request.
</Note>

## Request

<ParamField query="page[number]" type="integer" default="1">
  Page to fetch.
</ParamField>

<ParamField query="page[items]" type="integer" default="10">
  Items per page.
</ParamField>

```bash theme={null}
curl "https://uat-secure.choosefloat.com/api/refunds?page[number]=1&page[items]=25" \
  -H "Authorization: Bearer $FLOAT_CLIENT_SECRET" -g
```

## Response

```json 200 theme={null}
{
  "data": [
    {
      "id": "5d1a7c9e-2222-4444-8888-aa11bb22cc33",
      "type": "refund_requests",
      "attributes": {
        "amount": 100000,
        "currency": "GBP",
        "status": "complete",
        "created_at": "2026-07-17T11:00:00Z"
      }
    }
  ],
  "links": {
    "first": "https://uat-secure.choosefloat.com/api/refunds?page[number]=1&page[items]=25",
    "last": "https://uat-secure.choosefloat.com/api/refunds?page[number]=1&page[items]=25",
    "prev": null,
    "next": null
  }
}
```

Attributes per item match [Get a refund](/api-reference/get-refund).

## Errors

| HTTP  | When                           |
| ----- | ------------------------------ |
| `401` | Bad Bearer token               |
| `429` | More than 1 request per minute |
