Skip to main content
GET
https://api.unleeshed.ai
/
partner
/
v1
/
usage
curl -X GET "https://api.unleeshed.ai/partner/v1/usage" \
  -H "X-Api-Key: pk_live_your_api_key"
{
  "success": true,
  "data": {
    "period": {
      "start": "2026-01-01T00:00:00Z",
      "end": "2026-01-31T23:59:59Z"
    },
    "usage": {
      "topics_created": 127,
      "commentaries_generated": 312,
      "api_calls": 1847
    },
    "quotas": {
      "topics_per_month": 1000,
      "commentaries_per_month": 5000,
      "api_calls_per_hour": 1000
    },
    "remaining": {
      "topics": 873,
      "commentaries": 4688
    }
  }
}

Response

period
object
Current billing period with start and end dates.
usage
object
Usage counts for the current period.
quotas
object
Your plan limits.
curl -X GET "https://api.unleeshed.ai/partner/v1/usage" \
  -H "X-Api-Key: pk_live_your_api_key"
{
  "success": true,
  "data": {
    "period": {
      "start": "2026-01-01T00:00:00Z",
      "end": "2026-01-31T23:59:59Z"
    },
    "usage": {
      "topics_created": 127,
      "commentaries_generated": 312,
      "api_calls": 1847
    },
    "quotas": {
      "topics_per_month": 1000,
      "commentaries_per_month": 5000,
      "api_calls_per_hour": 1000
    },
    "remaining": {
      "topics": 873,
      "commentaries": 4688
    }
  }
}