Skip to main content
GET
/
api
/
v1
/
accounts
/
onchain-daily-limit
Retrieve Onchain Daily Limit
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.valox.co/api/v1/accounts/onchain-daily-limit', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "data": {
    "onchainDailyLimit": 2500,
    "onchainDailyRemaining": 1000
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successfully retrieved the current onchain daily limit.

data
object
required