GET Credits
Check your remaining credits and usage
GET
Credits
Check your remaining API credits and usage statistics.
Cost: Free
Request
GET https://api.tessradar.com/api/v1/creditsHeaders
| Header | Value | Required |
|---|---|---|
Authorization | Bearer or_live_... | Yes |
Example Request
curl "https://api.tessradar.com/api/v1/credits" \
-H "Authorization: Bearer or_live_your_api_key"Example Response
{
"success": true,
"data": {
"credits": {
"remaining": 4850,
"total": 5000,
"used": 150
},
"plan": {
"name": "Starter",
"rateLimit": "10 req/sec"
},
"usage": {
"today": 45,
"thisMonth": 150
}
}
}This endpoint is free and doesn't consume any credits.