> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vidjutsu.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# vidjutsu usage

> Show remaining daily capacity per endpoint

```bash theme={null}
vidjutsu usage
```

Returns each daily rate-limit group with its limit and reported remaining capacity. Some related endpoints share a group, including clone admission and scrape/download. Buckets reset at 00:00 UTC.

## Example

```bash theme={null}
vidjutsu usage

{
  "clientId": "mc_...",
  "usage": {
    "watch":            { "limit": 50,  "remaining": 50 },
    "extract":          { "limit": 100, "remaining": 100 },
    "transcribe":       { "limit": 30,  "remaining": 30 },
    "check":            { "limit": 100, "remaining": 100 },
    "complianceVideo":  { "limit": 20,  "remaining": 20 },
    "compliancePrompt": { "limit": 100, "remaining": 100 },
    "overlay":          { "limit": 50,  "remaining": 50 }
  },
  "resetsAt": "2026-04-24T00:00:00.000Z"
}
```
