Skip to main content
GET
/
api
/
v1
/
accounts
/
{id}
Get account
curl --request GET \
  --url https://api.paratro.com/api/v1/accounts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "account_id": "acc_m1n2o3p4q5",
  "wallet_id": "wal_a1b2c3d4e5f6",
  "client_id": "cli_x1y2z3",
  "address": "0x1234567890abcdef1234567890abcdef12345678",
  "network": "mainnet",
  "address_type": "INBOUND",
  "status": "ACTIVE",
  "created_at": "2026-01-15T10:35:00Z",
  "label": "Main ETH Account"
}

Get Account

Retrieve details of a specific blockchain account.
id
string
required
Account ID (UUID).

Response

{
  "account_id": "acc_01HXYZ...",
  "wallet_id": "w_01HXYZ...",
  "client_id": "c_01HXYZ...",
  "address": "0x1a2b3c4d5e6f...",
  "network": "mainnet",
  "address_type": "INBOUND",
  "label": "Deposit Account",
  "status": "ACTIVE",
  "created_at": "2025-01-15T10:30:45+08:00"
}

Errors

HTTPCodeCondition
400invalid_parameterMissing account ID
404not_foundAccount not found

Authorizations

Authorization
string
header
required

JWT access token obtained from the /api/v1/auth/token endpoint.

Path Parameters

id
string
required

The unique identifier of the account.

Response

Account retrieved successfully.

account_id
string
required

Unique identifier for the account.

Example:

"acc_m1n2o3p4q5"

wallet_id
string
required

The wallet ID this account belongs to.

Example:

"wal_a1b2c3d4e5f6"

client_id
string
required

The client ID that owns this account.

Example:

"cli_x1y2z3"

address
string
required

The blockchain address for this account.

Example:

"0x1234567890abcdef1234567890abcdef12345678"

network
string
required

Network value derived by the gateway from its chain registry.

Example:

"mainnet"

address_type
enum<string>
required

The type of address.

Available options:
INBOUND
Example:

"INBOUND"

status
enum<string>
required

Current status of the account.

Available options:
ACTIVE
Example:

"ACTIVE"

created_at
string<date-time>
required

Timestamp when the account was created.

Example:

"2026-01-15T10:35:00Z"

label
string | null

Optional human-readable label.

Example:

"Main ETH Account"