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
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",
}{
"detail": "Currency does not exist"
}{
"detail": "Max length of label is 255 characters"
}{
"detail": "Max length of postback_url is 255 characters"
}{
"detail": [
{
"loc": [],
"msg": "string",
"type": "string"
}
]
}Example
Last updated