Skip to main content
GET
/
accounts
/
{id}
cURL
curl --request GET \
  --url https://api.onchainden.com/api/v1/accounts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "acc_123",
    "name": "Treasury",
    "networks": [
      {
        "id": 1,
        "name": "Ethereum"
      }
    ],
    "address": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header.

Path Parameters

id
string
required

Response

Account details

data
object