Listing account addresses

Listing account addresses

GET /api/public/v1/accounts/:id/addresses

This endpoint returns a list of existing addresses for a given account ID.

Headers

Name
Value

Content-Type

application/vnd.api+json

Authorization

Bearer <api_key>

Path Parameters

Name
Type
Description

id

string

Account ID.

Response

{
  "data": [
    {
      "id": "6a022638-c9c6-46ad-b862-1139fa4b8923",
      "type": "addresses",
      "attributes": {
        "label": "First Address",
        "value": "0xfff18888872fba23a2bd86ba25a1ec17ff8a7de7",
        "createdAt": "2024-11-07T14:17:02.893Z"
      },
      "relationships": {
        "account": {
          "meta": {
            "included": false
          }
        },
        "network": {
          "data": {
            "type": "network",
            "id": "12796357-69d4-4382-9677-0f55cb208854"
          }
        }
      }
    }
  ],
  "included": [
    {
      "id": "12796357-69d4-4382-9677-0f55cb208854",
      "type": "network",
      "attributes": {
        "currencyCode": "USDC",
        "name": "Ethereum (ERC20)",
        "code": "hterc2dp"
      }
    }
  ],
  "meta": {},
  "jsonapi": {
    "version": "1.0"
  }
}

Last updated