Wallet

Endpoints for wallet operations.

Get wallet balance

get
Authorizations
Responses
200
Current balance
get
GET /api/wallet/balance HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Current balance

No content

Send funds from wallet

post
Authorizations
Body
toAddressstringRequired
amountnumber · min: 0.3Required
Responses
200
Transaction sent
post
POST /api/wallet/send HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 31

{
  "toAddress": "text",
  "amount": 1
}
200

Transaction sent

No content

Last updated