Wallet
Creating a wallet on the blockchain network
Authorizations
Body
blockchainTypestringOptional
localestringOptional
Responses
200
OK
application/json
400
Bad Request
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
default
application/json
post
POST //api/wallet HTTP/1.1
Host: api.client.nbcgate.tech
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 41
{
"blockchainType": "text",
"locale": "text"
}
{
"address": "text",
"blockchainType": "text"
}
Get wallet balance and number of transactions by address and network
Authorizations
Path parameters
networkIdstringRequired
networkId
addressstringRequired
address
Responses
200
OK
application/json
400
Bad Request
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
default
application/json
get
GET //api/wallet/{networkId}/{address} HTTP/1.1
Host: api.client.nbcgate.tech
Authorization: YOUR_API_KEY
Accept: */*
{
"balance": "text",
"tokens": [
{
"id": 1,
"name": "text",
"value": "text"
}
],
"transactionCount": "text"
}