Retrieve Wallet List

GET /wallet/

Access a full list of available wallets.

Headers

Name
Value

Content-Type

application/json

X-API-KEY

<token>

Response

[
    {
        "id": 0,
        "label": "string",
        "postback_url": "http://example.com",
        "currency": "string",
        "address": "string",
        "created_at": "2019-08-24T14:15:22Z",
        "expires_at": "2019-09-24T14:15:22Z",
    }
]

Example

curl -X GET "https://api.nord-pay.com/wallet/" \
     -H "Content-Type: application/json" \
     -H "X-API-KEY: YOUR_API_KEY"

Last updated