BazaarLinkBazaarLink
Sign in
DocsAPI ReferenceSDK ReferenceAgentic UsageAI Skills
API Keys

Check API key

A lightweight check that the key in the Authorization header is valid, consuming no credits. This is a separate handler from GET /v1/key: it returns fewer fields (no usage_daily/weekly/monthly breakdown, no expires_at, is_management_key, or is_provisioning_key), but limit/limit_remaining now reflect this key's real per-key spend limit.

GET/api/v1/auth/key

Authorizations

Authorizationrequired
string · header

API key as bearer token in the Authorization header.

GET /api/v1/auth/key
curl https://bazaarlink.ai/api/v1/auth/key \
  -H "Authorization: Bearer $BAZAARLINK_API_KEY"
Response examples

Success. usage is lifetime historical spend; limit is this key's spend cap (null = unlimited), and limit_remaining is the remaining amount for the current reset period.

{
  "data": {
    "label": "default",
    "usage": 128.4,
    "limit": 50,
    "limit_remaining": 37.7,
    "is_free_tier": false,
    "rate_limit": {
      "requests": 200,
      "interval": "1m"
    }
  }
}
Support
Support
Hi! How can we help you?
Send a message and we'll get back to you soon.
Check API key — BazaarLink API