Skip to main content
GET
/
api
/
v1
/
usage
cURL
curl -sS \
  -H 'Authorization: Bearer $OXI_SK' \
  'https://api.0xinsider.com/api/v1/usage'
{
  "object": "usage",
  "data": {
    "rate_limit": {
      "used": 7,
      "limit": 100,
      "remaining": 93,
      "reset_at": 1710772860,
      "window_seconds": 60
    },
    "daily_usage": {
      "used": 42,
      "limit": null,
      "remaining": null,
      "reset_at": 1710806400,
      "window_seconds": 86400
    }
  },
  "meta": {
    "request_id": "req_example",
    "cached": false
  }
}
Read your current request budget without spending primary quota. Returns the live per-minute primary limiter window plus UTC-day usage. It does not increment the primary request counter and does not log itself into daily usage. The endpoint has its own 100 reads/minute per-user guard; a 429 here is a backoff signal, not proof you spent primary quota. The daily limit and remaining fields are null because V1 has no daily hard cap.
curl -H "Authorization: Bearer $OXINSIDER_API_KEY" \
  "https://api.0xinsider.com/api/v1/usage"
Check quota here instead of polling a data endpoint to guess your remaining budget.

Authorizations

Authorization
string
header
required

API key: Authorization: Bearer oxi_sk_live_...

Response

Usage budget and counters for the authenticated API key owner.

object
string
required
Allowed value: "usage"
data
object
required
meta
object
required