Skip to main content
GET
/
v1
/
fees
List
curl --request GET \
  --url https://{defaultHost}/v1/fees \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/fees"
  },
  "data": [
    {
      "id": "3fa640d6-44a6-4807-948f-20193ff2af33",
      "object": "fee",
      "amount": 100,
      "description": "Transaction Fee",
      "fee_type": "manual",
      "line_item": "66082fad-51c0-4fb3-bf81-ed13626eb35c",
      "created_at": 1767909700,
      "updated_at": 1767909700
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

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.

page
integer

The page of items you want returned.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.