v1

latestOpenAPI 3.0.32026-07-1320201.0 MB
Bitcoin Wallets

Show Wallet details

This method will return the wallet details.

get/api/v2/bitcoin/wallets/{wallet}

Headers

X-Network'testnet' | 'mainnet'

Specify "testnet" for test network or leave empty for main network. Defaults to "mainnet" if not provided.

Authorizationstring required

Bearer token for authorization. Required for authenticated endpoints.

Content-Type'application/json' | 'application/x-www-form-urlencoded' | 'multipart/form-data'

The MIME type of the request body.

Response

Wallet fetched successfully

statusinteger
okboolean
messagestring

Example response

{
  "status": 200,
  "ok": true,
  "message": "Wallet fetched successfully",
  "data": {
    "address": "bc1qzq8m9ukvvgvj7kmlejnfr2q4ndmk2e4ndtr9rn",
    "balance": 0,
    "transactions": 0,
    "unconfirmed": 0,
    "label": "My Wallet",
    "created_at": "2022-12-26T12:55:48.128000860Z",
    "updated_at": "2022-12-26T12:55:48.128000860Z"
  }
}