Skip to main content
GET
/
v1
/
accounts
{
  "data": [
    {
      "accountId": "acc_12345",
      "name": "Primary Business Account",
      "description": "Main account for business operations",
      "purpose": "OPERATING",
      "classification": "PRIMARY",
      "status": "ACTIVE",
      "metadata": {
        "department": "finance",
        "costCenter": "HQ"
      },
      "updatedAt": "2025-04-29T13:29:15.064Z",
      "createdAt": "2025-04-29T13:29:15.064Z"
    }
  ],
  "next_cursor": "<string>",
  "page_size": 123
}

Query Parameters

cursor
string

The cursor pointing to the start of the next page (omit for first request)

limit
integer
default:25

The number of items to return per page (default: 25, max: 100)

Response

The request has succeeded.

Container model for paginated responses

data
object[]
required

The array of data items

page_size
integer
required

The number of items returned in this response

next_cursor
string

The cursor pointing to the start of the next page (null if no more pages)

I