Wallet

Creating a wallet on the blockchain network

post

Creating a wallet on the blockchain network

Authorizations
Body
blockchainTypestringOptional
localestringOptional
Responses
200
OK
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

get

Get wallet balance and number of transactions by address and network

Authorizations
Path parameters
networkIdstringRequired

networkId

addressstringRequired

address

Responses
200
OK
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"
}