Account

List accounts

Lists accounts within an organization.

get/account

Query parameters

offsetinteger

The starting point for pagination. Defaults to 0 if not provided.

limitinteger

The maximum number of results to return per page.

organization_idstring required

The ID of the organization for which accounts are being listed.

Response

The list of accounts matching the query.

Example response

{
  "paging": {
    "total": 30,
    "limit": 200
  },
  "results": [
    {
      "id": 1234,
      "name": "Crypto Kong",
      "slug": "crypto-kong",
      "organization_id": 123,
      "status": "active",
      "deleted_at": "2026-05-15T12:34:56.000Z",
      "metadata": {
        "key": "value"
      }
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.