npx skills add ...
npx skills add runwayml/skills --skill rw-check-org-details
Query the Runway API for organization details: rate limits, credit balance, usage tier, and daily generation counts
npx skills add runwayml/skills --skill rw-check-org-details
Prerequisite:
RUNWAYML_API_SECRETmust be available to the server-side process. Never print or paste its value.
Query the Runway API to retrieve the user's organization details — credit balance, usage tier, rate limits, current daily generation counts, and historical credit usage.
Before making any requests, confirm the API key is accessible:
RUNWAYML_API_SECRET from its server-side environment.test -n "$RUNWAYML_API_SECRET".If the key is not found, ask the user to create one in Runway Developer Portal settings and add it to the server-side environment, then stop.
Call GET /v1/organization to retrieve the org's tier, credit balance, and current usage.
Format the output as a clear summary for the user:
Key things to highlight:
credits × $0.01)If the user wants to see historical usage, call POST /v1/organization/usage.
Present this as a usage breakdown:
If the user asks about upgrading, share the tier breakdown:
| Tier | Concurrency | Daily Gens | Monthly Cap | Unlock Requirement |
|---|---|---|---|---|
| 1 (default) | 1–2 | 50–200 | $100 | — |
| 2 | 3 | 500–1,000 | $500 | 1 day + $50 spent |
| 3 | 5 | 1,000–2,000 | $2,000 | 7 days + $100 spent |
| 4 | 10 | 5,000–10,000 | $20,000 | 14 days + $1,000 spent |
| 5 | 20 | 25,000–30,000 | $100,000 | 7 days + $5,000 spent |
Tiers upgrade automatically once the spend and time requirements are met.
| Issue | Cause | Fix |
|---|---|---|
401 Unauthorized | Invalid or missing API key | Replace RUNWAYML_API_SECRET with a valid Developer Portal key |
creditBalance is 0 | No credits purchased | Purchase at https://dev.runwayml.com/ → Billing (min $10) |
| Daily limit reached | Rolling 24-hour quota exhausted | Wait for the window to reset, or upgrade tier |
| All models show 0 daily limit | Tier 1 restrictions | Check that credits have been purchased |