Skip to main content
GET
/
v1
/
refunds
List
curl --request GET \
  --url https://{defaultHost}/v1/refunds \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/refunds"
  },
  "data": [
    {
      "id": "8a6bb1c3-5efa-482a-821f-d7999c875786",
      "object": "refund",
      "amount": 1450,
      "currency": "usd",
      "external_refund_id": "w9x5b4t2bcibest",
      "failure_reason": null,
      "live_mode": true,
      "metadata": {},
      "reason": "requested_by_customer",
      "status": "pending",
      "charge": "c19fa9fd-1273-4b65-b6a9-cef9edcc539f",
      "customer": "a6c47ac5-e517-4e3b-837b-d31e05705093",
      "return_request": null,
      "created_at": 1767909756,
      "updated_at": 1767909756
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

charge_ids[]
string[]

Only return objects with the given charge IDs.

customer_ids[]
string[]

Only return objects that belong to the given customers.

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

live_mode
boolean

Only return objects that are live mode or test mode.

page
integer

The page of items you want returned.

return_request_ids[]
string[]

Only return objects that belong to the given return requests.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.