Skip to main content
GET
/
settlement_accounts
List settlement accounts
curl --request GET \
  --url https://api.withacclaim.com/v1/settlement_accounts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "sa_M9q4eR20Kx",
      "currency": "USD",
      "status": "Inactive",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next_cursor": "<string>",
  "has_more": true
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:25
Required range: 1 <= x <= 100
cursor
string

Response

A list of settlement accounts.

data
object[]
next_cursor
string | null
has_more
boolean
Last modified on April 14, 2026