Skip to main content
GET
/
clients
/
{id}
/
accounts
Get account
curl --request GET \
  --url https://api.conduit.financial/clients/{id}/accounts \
  --header 'X-API-Key: <api-key>' \
  --header 'X-API-Secret: <api-key>'
{
  "data": [
    {
      "id": "client_2ofTA13AD0xBtbEvBl20aEb1hEu",
      "accountId": "acct_2ofTA5mz0T91pBmD3tMTeLE7T4X",
      "balances": {
        "available": [
          {
            "asset": "USD",
            "amount": "0",
            "network": "ethereum",
            "country": "<string>"
          }
        ]
      },
      "businessLegalName": "<string>"
    }
  ],
  "totalBalances": {
    "available": [
      {
        "asset": "USD",
        "amount": "0",
        "network": "ethereum",
        "country": "<string>"
      }
    ]
  }
}

Authorizations

X-API-Key
string
header
required

Includes an API key in the HTTP headers to authenticate the client.

X-API-Secret
string
header
required

Includes an API secret in the HTTP headers to authenticate the client.

Path Parameters

id
string
required

A valid Client ID

Example:

"client_2ofTA13AD0xBtbEvBl20aEb1hEu"

Response

A page of listed client accounts objects

data
object[]
required
totalBalances
object
required