Get Wallet (beta)

GET /v1/wallets/{wallet_id}

Get wallet using wallet ID.

HTTP Request

GET /v1/auth/wallets/{wallet_id}

Returns

A successful response returns a Wallet object.

Path parameters

  • wallet_id string Required

    Unique wallet ID of the wallet to retrieve.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id string
    • app_id string
    • user_id string
    • public_address string
    • wallet_type string
    • verified boolean
    • is_default boolean
    • is_read_only boolean
    • is_imported boolean
    • updated_at integer
    • created_at integer
GET /v1/wallets/{wallet_id}
curl \
 --request GET 'https://api.streambird.io/v1/wallets/{wallet_id}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": "wallet_2DEtMc9niawvKOlEcbPh06IWp4Y",
  "app_id": "app_25ldv51seNohTaYRsxdfoxMlAa2",
  "user_id": "user_26l6ha8syVN8oqmaHaFShTxZ5RC",
  "verified": true,
  "created_at": 1660276024,
  "is_default": true,
  "updated_at": 1660276024,
  "is_imported": false,
  "wallet_type": "BTC",
  "is_read_only": false,
  "public_address": "mvVHTdXktpvndv71QfU9AekTebBvgdZb1e"
}