Billing

How to manage your account billing via NodeHub.io API.

Get generated wallets

GET https://api.nodehub.io/v1/billing/wallets

This endpoint returns the deposit addresses you've generated, which you can use to top up your account.

Headers

Name
Type
Description

Authorization*

string

Authentication token you've generated in your account

[
  {
    "address": "WjrzHKPnqp2r1BJsWCkCxyXv3Kd1jfYquy", 
    "currency": "TWINS"
  }, 
  {
    "address": "DKZXt3UihQow2iZWbmTTpfXb9vAj32FSNn", 
    "currency": "CDZC"
  }, 
  {
    "address": "STkQPSay4E3kdLyysTdF7Wymn4sfxF8cjm", 
    "currency": "SEND"
  }, 
  {
    "address": "CRWQmejc94xF1UbDb2yjUbgxzjnAu9jtLaNB", 
    "currency": "CRW"
  }, 
  {
    "address": "XvFLS4KJhaazgiD2rYvmbU6gV2F5SGoP6X", 
    "currency": "DASH"
  }
...
]

Get accepted currencies

GET https://api.nodehub.io/v1/billing/accepted

This endpoint returns the accepted currencies for topping up your account.

Headers

Name
Type
Description

Authorization*

string

Authentication token you've generated in your account

View transactions

GET https://api.nodehub.io/v1/billing/transactions

This endpoint returns your transaction history.

Headers

Name
Type
Description

Authorization*

string

Authentication token you've generated in your account

Generate wallet address

POST https://api.nodehub.io/v1/billing/wallets

This endpoint generates a deposit address which you can use to top up your account.

Headers

Name
Type
Description

Authorization*

string

Authentication token you've generated in your account

Request Body

Name
Type
Description

currency*

string

Ticker of the coin you'd like to create an address for

Last updated