Create Wallet

POST /wallet/create

Create a new wallet with your preferred currency and label.

Headers

Name
Value

Content-Type

application/json

X-API-KEY

<token>

Body

Name
Type
Description

currency*

string

label*

string

Label of wallet

postback_url

string

Destination URL for sending post

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

Last updated