GET
/
wallets
/
{id}
curl --request GET \
  --url https://api.sulu.sh/v0/wallets/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "wallet",
  "ownedBy": "<string>",
  "balance": 123,
  "currency": "<string>",
  "timezone": "<string>",
  "tag": "<string>",
  "createdAt": 123,
  "updatedAt": 123,
  "name": "<string>",
  "description": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Wallet ID with acc_ prefix

Response

200
application/json
Wallet details
id
string

Unique account ID with acc_ prefix

object
enum<string>
default:wallet
Available options:
wallet
ownedBy
string

Owner identifier

balance
integer

Balance in nano dollars (1e-9 dollars)

currency
string

ISO 4217 currency code

timezone
string

IANA timezone

tag
string

Optional tag for the account

createdAt
integer

Creation timestamp (Unix nano)

updatedAt
integer

Last update timestamp (Unix nano)

name
string

Display name for the account

description
string

Optional description