Get an address

Get an address

GET https://api.meria.com/v1/walletAddresses/:currencyCode/:id

This endpoint allows to get an address.

Path Parameters

Name
Type
Description

currencyCode

string

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

id

integer

ID of the address.

Headers

Name
Type
Description

API-KEY

string

Authentication token

{
    "success": true,
    "data": {
        "id": 11401,
        "currencyCode": "ETH",
        "name": null,
        "address": "0x............................",
        "isBEP2": false,
        "memo": null
    }
}

Last updated