Skip to main content
GET
/
usage
curl "https://app.neariq.io/api/v1/usage" \
  -H "X-NearIQ-Key: niq_your_key_here"
Returns usage statistics for your account. This API-key endpoint is read-only. Session-authenticated billing controls live under GET/PATCH /api/businesses/me/overage-settings, and invoice visibility lives under GET /api/businesses/me/invoices.
X-NearIQ-Key
string
required
Your API key from Settings > API Keys
curl "https://app.neariq.io/api/v1/usage" \
  -H "X-NearIQ-Key: niq_your_key_here"
{
  "plan": "agency",
  "competitors": { "used": 12, "limit": 50 },
  "rankChecks": { "todayUsed": 8, "dailyLimit": 50 },
  "api": {
    "requestsToday": 142,
    "dailyLimit": 10000,
    "requestsThisMonth": 3841
  },
  "keys": [
    {
      "id": "key_abc",
      "name": "Reporting dashboard",
      "prefix": "niq_a3f7...",
      "createdAt": "2026-01-15T10:00:00Z",
      "lastUsedAt": "2026-04-27T09:22:14Z"
    }
  ]
}