Retrieve Wallet by ID

GET /wallet/{id}

Fetch detailed information about a specific wallet.

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/your-wallet-id" \
     -H "Content-Type: application/json" \
     -H "X-API-KEY: YOUR_API_KEY"

Last updated