v3

latestOpenAPI 3.1.02026-07-318648277.6 KB
Analytics

Dashboard Overview

Get a real-time snapshot of your account including credits, rate limits, and usage statistics.

get/v1/analytics/dashboard

Response

Dashboard data retrieved successfully

Example response

{
  "user": {
    "id": "user_abc123",
    "email": "developer@leadmagic.io"
  },
  "credits": {
    "current": 15432.5,
    "formatted": "$154.33"
  },
  "rate_limit": {
    "minute": {
      "limit": 300,
      "used": 45,
      "remaining": 255,
      "utilization": 15
    },
    "daily": {
      "limit": 500000,
      "used": 12500,
      "remaining": 487500,
      "utilization": 2.5
    }
  },
  "concurrency": {
    "peak": 23
  },
  "stats": {
    "today": {
      "requests": 1250,
      "credits": 875.5,
      "chargeable_requests": 1100,
      "chargeable_rate": 88,
      "unique_products": 5
    },
    "this_week": {
      "requests": 8500,
      "credits": 5200.25,
      "chargeable_requests": 7200,
      "chargeable_rate": 84.7,
      "unique_products": 8
    },
    "this_month": {
      "requests": 45000,
      "credits": 28500,
      "chargeable_requests": 38000,
      "chargeable_rate": 84.4,
      "unique_products": 12
    }
  }
}