Skip to main content
GET
/
v1
/
account
/
me
curl -X GET "https://scrapebadger.com/v1/account/me" \
  -H "x-api-key: sb_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
{
  "credits_balance": 99171,
  "tier": "pro",
  "rate_limit_per_minute": 100
}
Returns account details for the authenticated API key. No credits are deducted for this call.
This endpoint is useful for monitoring your credit balance programmatically — e.g., before running a batch job or in a CI pipeline.

Response Fields

FieldTypeDescription
credits_balancenumberCurrent credit balance for the account
tierstringPlan tier (e.g., free, pro, enterprise)
rate_limit_per_minuteintegerMaximum API requests allowed per minute
curl -X GET "https://scrapebadger.com/v1/account/me" \
  -H "x-api-key: sb_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
{
  "credits_balance": 99171,
  "tier": "pro",
  "rate_limit_per_minute": 100
}