GET/account/credits/remaining
Get number of available credits for this API key. For test API keys, this will be the number of remaining credits for the day. If an automatic recharge is set up, it will be included in the response.
This endpoint has no cost.
Example
Request
curl "https://api.nettoolkit.com/v1/account/credits/remaining" \
-H "X-NTK-KEY: $YOUR_KEY_HERE"
Response
{
"code": 1000,
"results": [
{
"credits": 999,
"auto_recharge": {
"threshold": 1000,
"dollar_amount": 10
}
}
]
}