Meria API
  • Quick start
  • Masternodes
    • List masternodes
    • Get a masternode
  • Hardwares
    • List machines
    • Get a bob
    • Get an asic
  • Clouds
    • List cloud contracts
    • Get a cloud contract
  • Staking
    • List staking contracts
    • Get a staking contract
  • LENDING
    • List lending contracts
    • Get a lending contract
  • Wallets
    • List wallets
    • Get a wallet
  • Wallet addresses
    • List addresses
    • List addresses for currency
    • Get an address
  • Operations
    • List operations
    • Get an operation
Powered by GitBook
On this page

Was this helpful?

  1. Wallets

Get a wallet

Get a wallet

GET https://api.meria.com/v1/wallets/:currencyCode

This endpoint allows to get a wallet.

Path Parameters

Name
Type
Description

currencyCode

string

Wallet currency code (example: ETH, BTC, ...)

Headers

Name
Type
Description

API-KEY

string

Authentification token

{
    "success": true,
    "data": {
        "currencyCode": "ETH",
        "balance": 0.03190596
    }
}
{
    "success": false,
    "error": {
        "code": 404,
        "message": "RESSOURCE_NOT_FOUND"
    }
}
PreviousList walletsNextList addresses

Last updated 2 years ago

Was this helpful?