Skip to main content
GET
/
v1
/
credit-balance
Get Credit Balance
curl --request GET \
  --url https://api.scraper.creatorlookup.com/v1/credit-balance \
  --header 'x-api-key: <api-key>'
{
  "credits_remaining": 123
}

Request

No query parameters required. Authenticate with your API key.

Headers

NameRequiredDescription
x-api-keyYesYour API key

Response

credits_remaining
number
The number of credits remaining on your API key.

Examples

curl -H "x-api-key: sk-your-api-key" \
  https://api.scraper.creatorlookup.com/v1/credit-balance

200 — Success

{
  "credits_remaining": 9500
}

401 — Unauthorized

{
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Missing x-api-key header"
  }
}