Accounts

List accounts

get
Authorizations
Query parameters
pageany ofOptional

Which page to fetch

Default: 1
notOptional
or
integer · min: 1Optional
pageSizeany ofOptional

Page size to use

Default: 30
notOptional
or
integer · min: 1 · max: 30Optional
statusstring · enumOptional

Account status

Possible values:
namestringOptional

Search by matching name

governanceTypestring · enumOptional

Account governance type

Possible values:
sortBystring · enumOptional

Sort by attribute

Default: createdAtPossible values:
sortOrderstring · enumOptional

Sort order

Default: ascPossible values:
skipLiveDatabooleanOptional

Do not fetch live data (e.g. balance and staking) from blockchain

Default: false
Responses
200
Successful response
application/json
get
GET /rest/accounts HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "page": 1,
  "next": 1,
  "prev": 1,
  "pageSize": 1,
  "total": 1,
  "results": [
    {
      "id": "text",
      "legacyId": 1,
      "status": "ACTIVE",
      "name": "text",
      "currency": "text",
      "index": 1,
      "derivationPath": "text",
      "createdAt": "2025-06-22T14:24:00.220Z",
      "updatedAt": "2025-06-22T14:24:00.220Z",
      "balance": {
        "total": "text",
        "pending": "text"
      },
      "asset": {
        "type": "BITCOIN_LIKE",
        "xpub": "text"
      },
      "governance": {
        "type": "CLASSIC",
        "policyId": "text"
      }
    }
  ]
}

Get a single account

get
Authorizations
Path parameters
idstringRequired

Id of the target account

Query parameters
skipLiveDatabooleanOptional

Do not fetch live data (e.g. balance and staking) from blockchain

Default: false
Responses
200
Successful response
application/json
get
GET /rest/accounts/{id} HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "id": "text",
  "legacyId": 1,
  "status": "ACTIVE",
  "name": "text",
  "currency": "text",
  "index": 1,
  "derivationPath": "text",
  "createdAt": "2025-06-22T14:24:00.220Z",
  "updatedAt": "2025-06-22T14:24:00.220Z",
  "balance": {
    "total": "text",
    "pending": "text"
  },
  "asset": {
    "type": "BITCOIN_LIKE",
    "xpub": "text"
  },
  "governance": {
    "type": "CLASSIC",
    "policyId": "text"
  }
}