[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-runway-rw-check-org-details":3,"mdc--hocxf2-key":32,"related-org-runway-rw-check-org-details":2107,"related-repo-runway-rw-check-org-details":2271},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":21,"repoUrl":22,"updatedAt":23,"license":24,"forks":25,"topics":26,"repo":27,"sourceUrl":30,"mdContent":31},"rw-check-org-details","query Runway API for organization details","Query the Runway API for organization details: rate limits, credit balance, usage tier, and daily generation counts",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"runway","Runway","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Frunway.png","runwayml",[13,17,20],{"name":14,"slug":15,"type":16},"Operations","operations","tag",{"name":18,"slug":19,"type":16},"Reporting","reporting",{"name":9,"slug":8,"type":16},57,"https:\u002F\u002Fgithub.com\u002Frunwayml\u002Fskills","2026-04-08T04:42:00.054235",null,15,[],{"repoUrl":22,"stars":21,"forks":25,"topics":28,"description":29},[],"for Runway coding agent skills","https:\u002F\u002Fgithub.com\u002Frunwayml\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Frw-check-org-details","---\nname: rw-check-org-details\ndescription: \"Query the Runway API for organization details: rate limits, credit balance, usage tier, and daily generation counts\"\nuser-invocable: true\nallowed-tools: Read, Grep, Glob, Bash(node *), Bash(python3 *), Bash(curl *)\n---\n\n# Check Organization Details\n\n> **PREREQUISITE:** Run `+rw-setup-api-key` first to ensure the API key is configured.\n\nQuery the Runway API to retrieve the user's organization details — credit balance, usage tier, rate limits, current daily generation counts, and historical credit usage.\n\n## Step 1: Verify API Key Is Available\n\nBefore making any requests, confirm the API key is accessible:\n\n1. Check for a `.env` file containing `RUNWAYML_API_SECRET`\n2. Or check if the environment variable is set: `echo $RUNWAYML_API_SECRET`\n\nIf the key is not found, tell the user to run `+rw-setup-api-key` first and stop.\n\n## Step 2: Query Organization Info\n\nCall `GET \u002Fv1\u002Forganization` to retrieve the org's tier, credit balance, and current usage.\n\n### Node.js\n\n```javascript\nimport RunwayML from '@runwayml\u002Fsdk';\n\nconst client = new RunwayML();\nconst details = await client.organization.retrieve();\nconsole.log(JSON.stringify(details, null, 2));\n```\n\n### Python\n\n```python\nfrom runwayml import RunwayML\n\nclient = RunwayML()\ndetails = client.organization.retrieve()\nprint(details)\n```\n\n### cURL \u002F fetch (no SDK)\n\n```bash\ncurl -s https:\u002F\u002Fapi.dev.runwayml.com\u002Fv1\u002Forganization \\\n  -H \"Authorization: Bearer $RUNWAYML_API_SECRET\" \\\n  -H \"X-Runway-Version: 2024-11-06\" | python3 -m json.tool\n```\n\n### Response Shape\n\n```json\n{\n  \"tier\": {\n    \"maxMonthlyCreditSpend\": 10000,\n    \"models\": {\n      \"gen4.5\": {\n        \"maxConcurrentGenerations\": 2,\n        \"maxDailyGenerations\": 200\n      }\n    }\n  },\n  \"creditBalance\": 5000,\n  \"usage\": {\n    \"models\": {\n      \"gen4.5\": {\n        \"dailyGenerations\": 12\n      }\n    }\n  }\n}\n```\n\n## Step 3: Present the Results\n\nFormat the output as a clear summary for the user:\n\n```\n## Organization Overview\n\n**Credit Balance:** X credits ($X.XX at $0.01\u002Fcredit)\n**Monthly Spend Cap:** X credits\n\n### Rate Limits (by model)\n\n| Model | Concurrency | Daily Limit | Used Today | Remaining |\n|-------|-------------|-------------|------------|-----------|\n| gen4.5 | 2 | 200 | 12 | 188 |\n| veo3.1 | 2 | 100 | 5 | 95 |\n| ... | ... | ... | ... | ... |\n```\n\nKey things to highlight:\n- **Credit balance** — convert to dollar value (`credits × $0.01`)\n- **Per-model daily limits** — show how many generations remain today (rolling 24-hour window)\n- **Concurrency** — how many tasks can run simultaneously per model\n- **Monthly cap** — the max credit spend per month for their tier\n\n## Step 4 (Optional): Query Credit Usage History\n\nIf the user wants to see historical usage, call `POST \u002Fv1\u002Forganization\u002Fusage`.\n\n### Node.js\n\n```javascript\nconst usage = await client.organization.retrieveUsage({\n  startDate: '2026-02-15',   \u002F\u002F ISO-8601, up to 90 days back\n  beforeDate: '2026-03-17'   \u002F\u002F exclusive end date\n});\nconsole.log(JSON.stringify(usage, null, 2));\n```\n\n### Python\n\n```python\nusage = client.organization.retrieve_usage(\n    start_date=\"2026-02-15\",\n    before_date=\"2026-03-17\"\n)\nprint(usage)\n```\n\n### cURL \u002F fetch (no SDK)\n\n```bash\ncurl -s -X POST https:\u002F\u002Fapi.dev.runwayml.com\u002Fv1\u002Forganization\u002Fusage \\\n  -H \"Authorization: Bearer $RUNWAYML_API_SECRET\" \\\n  -H \"X-Runway-Version: 2024-11-06\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"startDate\": \"2026-02-15\", \"beforeDate\": \"2026-03-17\"}' \\\n  | python3 -m json.tool\n```\n\n### Response Shape\n\n```json\n{\n  \"results\": [\n    {\n      \"date\": \"2026-03-16\",\n      \"usedCredits\": [\n        { \"model\": \"gen4.5\", \"amount\": 120 },\n        { \"model\": \"veo3.1\", \"amount\": 400 }\n      ]\n    }\n  ],\n  \"models\": [\"gen4.5\", \"veo3.1\"]\n}\n```\n\nPresent this as a usage breakdown:\n\n```\n### Credit Usage (Feb 15 – Mar 17)\n\n| Date | Model | Credits Used |\n|------|-------|-------------|\n| 2026-03-16 | gen4.5 | 120 |\n| 2026-03-16 | veo3.1 | 400 |\n| ... | ... | ... |\n\n**Total:** X credits\n```\n\n## Tier Reference\n\nIf the user asks about upgrading, share the tier breakdown:\n\n| Tier | Concurrency | Daily Gens | Monthly Cap | Unlock Requirement |\n|------|-------------|------------|-------------|---------------------|\n| 1 (default) | 1–2 | 50–200 | $100 | — |\n| 2 | 3 | 500–1,000 | $500 | 1 day + $50 spent |\n| 3 | 5 | 1,000–2,000 | $2,000 | 7 days + $100 spent |\n| 4 | 10 | 5,000–10,000 | $20,000 | 14 days + $1,000 spent |\n| 5 | 20 | 25,000–30,000 | $100,000 | 7 days + $5,000 spent |\n\nTiers upgrade automatically once the spend and time requirements are met.\n\n## Troubleshooting\n\n| Issue | Cause | Fix |\n|-------|-------|-----|\n| `401 Unauthorized` | Invalid or missing API key | Re-run `+rw-setup-api-key` |\n| `creditBalance` is 0 | No credits purchased | Purchase at https:\u002F\u002Fdev.runwayml.com\u002F → Billing (min $10) |\n| Daily limit reached | Rolling 24-hour quota exhausted | Wait for the window to reset, or upgrade tier |\n| All models show 0 daily limit | Tier 1 restrictions | Check that credits have been purchased |\n",{"data":33,"body":36},{"name":4,"description":6,"user-invocable":34,"allowed-tools":35},true,"Read, Grep, Glob, Bash(node *), Bash(python3 *), Bash(curl *)",{"type":37,"children":38},"root",[39,48,73,78,85,90,125,137,143,156,163,384,390,437,443,548,554,924,930,935,945,950,1002,1008,1020,1025,1215,1220,1267,1272,1428,1433,1762,1767,1776,1782,1787,1967,1972,1978,2101],{"type":40,"tag":41,"props":42,"children":44},"element","h1",{"id":43},"check-organization-details",[45],{"type":46,"value":47},"text","Check Organization Details",{"type":40,"tag":49,"props":50,"children":51},"blockquote",{},[52],{"type":40,"tag":53,"props":54,"children":55},"p",{},[56,62,64,71],{"type":40,"tag":57,"props":58,"children":59},"strong",{},[60],{"type":46,"value":61},"PREREQUISITE:",{"type":46,"value":63}," Run ",{"type":40,"tag":65,"props":66,"children":68},"code",{"className":67},[],[69],{"type":46,"value":70},"+rw-setup-api-key",{"type":46,"value":72}," first to ensure the API key is configured.",{"type":40,"tag":53,"props":74,"children":75},{},[76],{"type":46,"value":77},"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.",{"type":40,"tag":79,"props":80,"children":82},"h2",{"id":81},"step-1-verify-api-key-is-available",[83],{"type":46,"value":84},"Step 1: Verify API Key Is Available",{"type":40,"tag":53,"props":86,"children":87},{},[88],{"type":46,"value":89},"Before making any requests, confirm the API key is accessible:",{"type":40,"tag":91,"props":92,"children":93},"ol",{},[94,114],{"type":40,"tag":95,"props":96,"children":97},"li",{},[98,100,106,108],{"type":46,"value":99},"Check for a ",{"type":40,"tag":65,"props":101,"children":103},{"className":102},[],[104],{"type":46,"value":105},".env",{"type":46,"value":107}," file containing ",{"type":40,"tag":65,"props":109,"children":111},{"className":110},[],[112],{"type":46,"value":113},"RUNWAYML_API_SECRET",{"type":40,"tag":95,"props":115,"children":116},{},[117,119],{"type":46,"value":118},"Or check if the environment variable is set: ",{"type":40,"tag":65,"props":120,"children":122},{"className":121},[],[123],{"type":46,"value":124},"echo $RUNWAYML_API_SECRET",{"type":40,"tag":53,"props":126,"children":127},{},[128,130,135],{"type":46,"value":129},"If the key is not found, tell the user to run ",{"type":40,"tag":65,"props":131,"children":133},{"className":132},[],[134],{"type":46,"value":70},{"type":46,"value":136}," first and stop.",{"type":40,"tag":79,"props":138,"children":140},{"id":139},"step-2-query-organization-info",[141],{"type":46,"value":142},"Step 2: Query Organization Info",{"type":40,"tag":53,"props":144,"children":145},{},[146,148,154],{"type":46,"value":147},"Call ",{"type":40,"tag":65,"props":149,"children":151},{"className":150},[],[152],{"type":46,"value":153},"GET \u002Fv1\u002Forganization",{"type":46,"value":155}," to retrieve the org's tier, credit balance, and current usage.",{"type":40,"tag":157,"props":158,"children":160},"h3",{"id":159},"nodejs",[161],{"type":46,"value":162},"Node.js",{"type":40,"tag":164,"props":165,"children":170},"pre",{"className":166,"code":167,"language":168,"meta":169,"style":169},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import RunwayML from '@runwayml\u002Fsdk';\n\nconst client = new RunwayML();\nconst details = await client.organization.retrieve();\nconsole.log(JSON.stringify(details, null, 2));\n","javascript","",[171],{"type":40,"tag":65,"props":172,"children":173},{"__ignoreMap":169},[174,219,228,268,322],{"type":40,"tag":175,"props":176,"children":179},"span",{"class":177,"line":178},"line",1,[180,186,192,197,203,209,214],{"type":40,"tag":175,"props":181,"children":183},{"style":182},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[184],{"type":46,"value":185},"import",{"type":40,"tag":175,"props":187,"children":189},{"style":188},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[190],{"type":46,"value":191}," RunwayML ",{"type":40,"tag":175,"props":193,"children":194},{"style":182},[195],{"type":46,"value":196},"from",{"type":40,"tag":175,"props":198,"children":200},{"style":199},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[201],{"type":46,"value":202}," '",{"type":40,"tag":175,"props":204,"children":206},{"style":205},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[207],{"type":46,"value":208},"@runwayml\u002Fsdk",{"type":40,"tag":175,"props":210,"children":211},{"style":199},[212],{"type":46,"value":213},"'",{"type":40,"tag":175,"props":215,"children":216},{"style":199},[217],{"type":46,"value":218},";\n",{"type":40,"tag":175,"props":220,"children":222},{"class":177,"line":221},2,[223],{"type":40,"tag":175,"props":224,"children":225},{"emptyLinePlaceholder":34},[226],{"type":46,"value":227},"\n",{"type":40,"tag":175,"props":229,"children":231},{"class":177,"line":230},3,[232,238,243,248,253,259,264],{"type":40,"tag":175,"props":233,"children":235},{"style":234},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[236],{"type":46,"value":237},"const",{"type":40,"tag":175,"props":239,"children":240},{"style":188},[241],{"type":46,"value":242}," client ",{"type":40,"tag":175,"props":244,"children":245},{"style":199},[246],{"type":46,"value":247},"=",{"type":40,"tag":175,"props":249,"children":250},{"style":199},[251],{"type":46,"value":252}," new",{"type":40,"tag":175,"props":254,"children":256},{"style":255},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[257],{"type":46,"value":258}," RunwayML",{"type":40,"tag":175,"props":260,"children":261},{"style":188},[262],{"type":46,"value":263},"()",{"type":40,"tag":175,"props":265,"children":266},{"style":199},[267],{"type":46,"value":218},{"type":40,"tag":175,"props":269,"children":271},{"class":177,"line":270},4,[272,276,281,285,290,295,300,305,309,314,318],{"type":40,"tag":175,"props":273,"children":274},{"style":234},[275],{"type":46,"value":237},{"type":40,"tag":175,"props":277,"children":278},{"style":188},[279],{"type":46,"value":280}," details ",{"type":40,"tag":175,"props":282,"children":283},{"style":199},[284],{"type":46,"value":247},{"type":40,"tag":175,"props":286,"children":287},{"style":182},[288],{"type":46,"value":289}," await",{"type":40,"tag":175,"props":291,"children":292},{"style":188},[293],{"type":46,"value":294}," client",{"type":40,"tag":175,"props":296,"children":297},{"style":199},[298],{"type":46,"value":299},".",{"type":40,"tag":175,"props":301,"children":302},{"style":188},[303],{"type":46,"value":304},"organization",{"type":40,"tag":175,"props":306,"children":307},{"style":199},[308],{"type":46,"value":299},{"type":40,"tag":175,"props":310,"children":311},{"style":255},[312],{"type":46,"value":313},"retrieve",{"type":40,"tag":175,"props":315,"children":316},{"style":188},[317],{"type":46,"value":263},{"type":40,"tag":175,"props":319,"children":320},{"style":199},[321],{"type":46,"value":218},{"type":40,"tag":175,"props":323,"children":325},{"class":177,"line":324},5,[326,331,335,340,345,349,354,359,364,369,375,380],{"type":40,"tag":175,"props":327,"children":328},{"style":188},[329],{"type":46,"value":330},"console",{"type":40,"tag":175,"props":332,"children":333},{"style":199},[334],{"type":46,"value":299},{"type":40,"tag":175,"props":336,"children":337},{"style":255},[338],{"type":46,"value":339},"log",{"type":40,"tag":175,"props":341,"children":342},{"style":188},[343],{"type":46,"value":344},"(JSON",{"type":40,"tag":175,"props":346,"children":347},{"style":199},[348],{"type":46,"value":299},{"type":40,"tag":175,"props":350,"children":351},{"style":255},[352],{"type":46,"value":353},"stringify",{"type":40,"tag":175,"props":355,"children":356},{"style":188},[357],{"type":46,"value":358},"(details",{"type":40,"tag":175,"props":360,"children":361},{"style":199},[362],{"type":46,"value":363},",",{"type":40,"tag":175,"props":365,"children":366},{"style":199},[367],{"type":46,"value":368}," null,",{"type":40,"tag":175,"props":370,"children":372},{"style":371},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[373],{"type":46,"value":374}," 2",{"type":40,"tag":175,"props":376,"children":377},{"style":188},[378],{"type":46,"value":379},"))",{"type":40,"tag":175,"props":381,"children":382},{"style":199},[383],{"type":46,"value":218},{"type":40,"tag":157,"props":385,"children":387},{"id":386},"python",[388],{"type":46,"value":389},"Python",{"type":40,"tag":164,"props":391,"children":394},{"className":392,"code":393,"language":386,"meta":169,"style":169},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","from runwayml import RunwayML\n\nclient = RunwayML()\ndetails = client.organization.retrieve()\nprint(details)\n",[395],{"type":40,"tag":65,"props":396,"children":397},{"__ignoreMap":169},[398,406,413,421,429],{"type":40,"tag":175,"props":399,"children":400},{"class":177,"line":178},[401],{"type":40,"tag":175,"props":402,"children":403},{},[404],{"type":46,"value":405},"from runwayml import RunwayML\n",{"type":40,"tag":175,"props":407,"children":408},{"class":177,"line":221},[409],{"type":40,"tag":175,"props":410,"children":411},{"emptyLinePlaceholder":34},[412],{"type":46,"value":227},{"type":40,"tag":175,"props":414,"children":415},{"class":177,"line":230},[416],{"type":40,"tag":175,"props":417,"children":418},{},[419],{"type":46,"value":420},"client = RunwayML()\n",{"type":40,"tag":175,"props":422,"children":423},{"class":177,"line":270},[424],{"type":40,"tag":175,"props":425,"children":426},{},[427],{"type":46,"value":428},"details = client.organization.retrieve()\n",{"type":40,"tag":175,"props":430,"children":431},{"class":177,"line":324},[432],{"type":40,"tag":175,"props":433,"children":434},{},[435],{"type":46,"value":436},"print(details)\n",{"type":40,"tag":157,"props":438,"children":440},{"id":439},"curl-fetch-no-sdk",[441],{"type":46,"value":442},"cURL \u002F fetch (no SDK)",{"type":40,"tag":164,"props":444,"children":448},{"className":445,"code":446,"language":447,"meta":169,"style":169},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -s https:\u002F\u002Fapi.dev.runwayml.com\u002Fv1\u002Forganization \\\n  -H \"Authorization: Bearer $RUNWAYML_API_SECRET\" \\\n  -H \"X-Runway-Version: 2024-11-06\" | python3 -m json.tool\n","bash",[449],{"type":40,"tag":65,"props":450,"children":451},{"__ignoreMap":169},[452,476,508],{"type":40,"tag":175,"props":453,"children":454},{"class":177,"line":178},[455,461,466,471],{"type":40,"tag":175,"props":456,"children":458},{"style":457},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[459],{"type":46,"value":460},"curl",{"type":40,"tag":175,"props":462,"children":463},{"style":205},[464],{"type":46,"value":465}," -s",{"type":40,"tag":175,"props":467,"children":468},{"style":205},[469],{"type":46,"value":470}," https:\u002F\u002Fapi.dev.runwayml.com\u002Fv1\u002Forganization",{"type":40,"tag":175,"props":472,"children":473},{"style":188},[474],{"type":46,"value":475}," \\\n",{"type":40,"tag":175,"props":477,"children":478},{"class":177,"line":221},[479,484,489,494,499,504],{"type":40,"tag":175,"props":480,"children":481},{"style":205},[482],{"type":46,"value":483},"  -H",{"type":40,"tag":175,"props":485,"children":486},{"style":199},[487],{"type":46,"value":488}," \"",{"type":40,"tag":175,"props":490,"children":491},{"style":205},[492],{"type":46,"value":493},"Authorization: Bearer ",{"type":40,"tag":175,"props":495,"children":496},{"style":188},[497],{"type":46,"value":498},"$RUNWAYML_API_SECRET",{"type":40,"tag":175,"props":500,"children":501},{"style":199},[502],{"type":46,"value":503},"\"",{"type":40,"tag":175,"props":505,"children":506},{"style":188},[507],{"type":46,"value":475},{"type":40,"tag":175,"props":509,"children":510},{"class":177,"line":230},[511,515,519,524,528,533,538,543],{"type":40,"tag":175,"props":512,"children":513},{"style":205},[514],{"type":46,"value":483},{"type":40,"tag":175,"props":516,"children":517},{"style":199},[518],{"type":46,"value":488},{"type":40,"tag":175,"props":520,"children":521},{"style":205},[522],{"type":46,"value":523},"X-Runway-Version: 2024-11-06",{"type":40,"tag":175,"props":525,"children":526},{"style":199},[527],{"type":46,"value":503},{"type":40,"tag":175,"props":529,"children":530},{"style":199},[531],{"type":46,"value":532}," |",{"type":40,"tag":175,"props":534,"children":535},{"style":457},[536],{"type":46,"value":537}," python3",{"type":40,"tag":175,"props":539,"children":540},{"style":205},[541],{"type":46,"value":542}," -m",{"type":40,"tag":175,"props":544,"children":545},{"style":205},[546],{"type":46,"value":547}," json.tool\n",{"type":40,"tag":157,"props":549,"children":551},{"id":550},"response-shape",[552],{"type":46,"value":553},"Response Shape",{"type":40,"tag":164,"props":555,"children":559},{"className":556,"code":557,"language":558,"meta":169,"style":169},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"tier\": {\n    \"maxMonthlyCreditSpend\": 10000,\n    \"models\": {\n      \"gen4.5\": {\n        \"maxConcurrentGenerations\": 2,\n        \"maxDailyGenerations\": 200\n      }\n    }\n  },\n  \"creditBalance\": 5000,\n  \"usage\": {\n    \"models\": {\n      \"gen4.5\": {\n        \"dailyGenerations\": 12\n      }\n    }\n  }\n}\n","json",[560],{"type":40,"tag":65,"props":561,"children":562},{"__ignoreMap":169},[563,571,598,629,653,678,709,735,744,753,762,792,817,841,865,890,898,906,915],{"type":40,"tag":175,"props":564,"children":565},{"class":177,"line":178},[566],{"type":40,"tag":175,"props":567,"children":568},{"style":199},[569],{"type":46,"value":570},"{\n",{"type":40,"tag":175,"props":572,"children":573},{"class":177,"line":221},[574,579,584,588,593],{"type":40,"tag":175,"props":575,"children":576},{"style":199},[577],{"type":46,"value":578},"  \"",{"type":40,"tag":175,"props":580,"children":581},{"style":234},[582],{"type":46,"value":583},"tier",{"type":40,"tag":175,"props":585,"children":586},{"style":199},[587],{"type":46,"value":503},{"type":40,"tag":175,"props":589,"children":590},{"style":199},[591],{"type":46,"value":592},":",{"type":40,"tag":175,"props":594,"children":595},{"style":199},[596],{"type":46,"value":597}," {\n",{"type":40,"tag":175,"props":599,"children":600},{"class":177,"line":230},[601,606,611,615,619,624],{"type":40,"tag":175,"props":602,"children":603},{"style":199},[604],{"type":46,"value":605},"    \"",{"type":40,"tag":175,"props":607,"children":608},{"style":457},[609],{"type":46,"value":610},"maxMonthlyCreditSpend",{"type":40,"tag":175,"props":612,"children":613},{"style":199},[614],{"type":46,"value":503},{"type":40,"tag":175,"props":616,"children":617},{"style":199},[618],{"type":46,"value":592},{"type":40,"tag":175,"props":620,"children":621},{"style":371},[622],{"type":46,"value":623}," 10000",{"type":40,"tag":175,"props":625,"children":626},{"style":199},[627],{"type":46,"value":628},",\n",{"type":40,"tag":175,"props":630,"children":631},{"class":177,"line":270},[632,636,641,645,649],{"type":40,"tag":175,"props":633,"children":634},{"style":199},[635],{"type":46,"value":605},{"type":40,"tag":175,"props":637,"children":638},{"style":457},[639],{"type":46,"value":640},"models",{"type":40,"tag":175,"props":642,"children":643},{"style":199},[644],{"type":46,"value":503},{"type":40,"tag":175,"props":646,"children":647},{"style":199},[648],{"type":46,"value":592},{"type":40,"tag":175,"props":650,"children":651},{"style":199},[652],{"type":46,"value":597},{"type":40,"tag":175,"props":654,"children":655},{"class":177,"line":324},[656,661,666,670,674],{"type":40,"tag":175,"props":657,"children":658},{"style":199},[659],{"type":46,"value":660},"      \"",{"type":40,"tag":175,"props":662,"children":663},{"style":371},[664],{"type":46,"value":665},"gen4.5",{"type":40,"tag":175,"props":667,"children":668},{"style":199},[669],{"type":46,"value":503},{"type":40,"tag":175,"props":671,"children":672},{"style":199},[673],{"type":46,"value":592},{"type":40,"tag":175,"props":675,"children":676},{"style":199},[677],{"type":46,"value":597},{"type":40,"tag":175,"props":679,"children":681},{"class":177,"line":680},6,[682,687,693,697,701,705],{"type":40,"tag":175,"props":683,"children":684},{"style":199},[685],{"type":46,"value":686},"        \"",{"type":40,"tag":175,"props":688,"children":690},{"style":689},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[691],{"type":46,"value":692},"maxConcurrentGenerations",{"type":40,"tag":175,"props":694,"children":695},{"style":199},[696],{"type":46,"value":503},{"type":40,"tag":175,"props":698,"children":699},{"style":199},[700],{"type":46,"value":592},{"type":40,"tag":175,"props":702,"children":703},{"style":371},[704],{"type":46,"value":374},{"type":40,"tag":175,"props":706,"children":707},{"style":199},[708],{"type":46,"value":628},{"type":40,"tag":175,"props":710,"children":712},{"class":177,"line":711},7,[713,717,722,726,730],{"type":40,"tag":175,"props":714,"children":715},{"style":199},[716],{"type":46,"value":686},{"type":40,"tag":175,"props":718,"children":719},{"style":689},[720],{"type":46,"value":721},"maxDailyGenerations",{"type":40,"tag":175,"props":723,"children":724},{"style":199},[725],{"type":46,"value":503},{"type":40,"tag":175,"props":727,"children":728},{"style":199},[729],{"type":46,"value":592},{"type":40,"tag":175,"props":731,"children":732},{"style":371},[733],{"type":46,"value":734}," 200\n",{"type":40,"tag":175,"props":736,"children":738},{"class":177,"line":737},8,[739],{"type":40,"tag":175,"props":740,"children":741},{"style":199},[742],{"type":46,"value":743},"      }\n",{"type":40,"tag":175,"props":745,"children":747},{"class":177,"line":746},9,[748],{"type":40,"tag":175,"props":749,"children":750},{"style":199},[751],{"type":46,"value":752},"    }\n",{"type":40,"tag":175,"props":754,"children":756},{"class":177,"line":755},10,[757],{"type":40,"tag":175,"props":758,"children":759},{"style":199},[760],{"type":46,"value":761},"  },\n",{"type":40,"tag":175,"props":763,"children":765},{"class":177,"line":764},11,[766,770,775,779,783,788],{"type":40,"tag":175,"props":767,"children":768},{"style":199},[769],{"type":46,"value":578},{"type":40,"tag":175,"props":771,"children":772},{"style":234},[773],{"type":46,"value":774},"creditBalance",{"type":40,"tag":175,"props":776,"children":777},{"style":199},[778],{"type":46,"value":503},{"type":40,"tag":175,"props":780,"children":781},{"style":199},[782],{"type":46,"value":592},{"type":40,"tag":175,"props":784,"children":785},{"style":371},[786],{"type":46,"value":787}," 5000",{"type":40,"tag":175,"props":789,"children":790},{"style":199},[791],{"type":46,"value":628},{"type":40,"tag":175,"props":793,"children":795},{"class":177,"line":794},12,[796,800,805,809,813],{"type":40,"tag":175,"props":797,"children":798},{"style":199},[799],{"type":46,"value":578},{"type":40,"tag":175,"props":801,"children":802},{"style":234},[803],{"type":46,"value":804},"usage",{"type":40,"tag":175,"props":806,"children":807},{"style":199},[808],{"type":46,"value":503},{"type":40,"tag":175,"props":810,"children":811},{"style":199},[812],{"type":46,"value":592},{"type":40,"tag":175,"props":814,"children":815},{"style":199},[816],{"type":46,"value":597},{"type":40,"tag":175,"props":818,"children":820},{"class":177,"line":819},13,[821,825,829,833,837],{"type":40,"tag":175,"props":822,"children":823},{"style":199},[824],{"type":46,"value":605},{"type":40,"tag":175,"props":826,"children":827},{"style":457},[828],{"type":46,"value":640},{"type":40,"tag":175,"props":830,"children":831},{"style":199},[832],{"type":46,"value":503},{"type":40,"tag":175,"props":834,"children":835},{"style":199},[836],{"type":46,"value":592},{"type":40,"tag":175,"props":838,"children":839},{"style":199},[840],{"type":46,"value":597},{"type":40,"tag":175,"props":842,"children":844},{"class":177,"line":843},14,[845,849,853,857,861],{"type":40,"tag":175,"props":846,"children":847},{"style":199},[848],{"type":46,"value":660},{"type":40,"tag":175,"props":850,"children":851},{"style":371},[852],{"type":46,"value":665},{"type":40,"tag":175,"props":854,"children":855},{"style":199},[856],{"type":46,"value":503},{"type":40,"tag":175,"props":858,"children":859},{"style":199},[860],{"type":46,"value":592},{"type":40,"tag":175,"props":862,"children":863},{"style":199},[864],{"type":46,"value":597},{"type":40,"tag":175,"props":866,"children":867},{"class":177,"line":25},[868,872,877,881,885],{"type":40,"tag":175,"props":869,"children":870},{"style":199},[871],{"type":46,"value":686},{"type":40,"tag":175,"props":873,"children":874},{"style":689},[875],{"type":46,"value":876},"dailyGenerations",{"type":40,"tag":175,"props":878,"children":879},{"style":199},[880],{"type":46,"value":503},{"type":40,"tag":175,"props":882,"children":883},{"style":199},[884],{"type":46,"value":592},{"type":40,"tag":175,"props":886,"children":887},{"style":371},[888],{"type":46,"value":889}," 12\n",{"type":40,"tag":175,"props":891,"children":893},{"class":177,"line":892},16,[894],{"type":40,"tag":175,"props":895,"children":896},{"style":199},[897],{"type":46,"value":743},{"type":40,"tag":175,"props":899,"children":901},{"class":177,"line":900},17,[902],{"type":40,"tag":175,"props":903,"children":904},{"style":199},[905],{"type":46,"value":752},{"type":40,"tag":175,"props":907,"children":909},{"class":177,"line":908},18,[910],{"type":40,"tag":175,"props":911,"children":912},{"style":199},[913],{"type":46,"value":914},"  }\n",{"type":40,"tag":175,"props":916,"children":918},{"class":177,"line":917},19,[919],{"type":40,"tag":175,"props":920,"children":921},{"style":199},[922],{"type":46,"value":923},"}\n",{"type":40,"tag":79,"props":925,"children":927},{"id":926},"step-3-present-the-results",[928],{"type":46,"value":929},"Step 3: Present the Results",{"type":40,"tag":53,"props":931,"children":932},{},[933],{"type":46,"value":934},"Format the output as a clear summary for the user:",{"type":40,"tag":164,"props":936,"children":940},{"className":937,"code":939,"language":46},[938],"language-text","## Organization Overview\n\n**Credit Balance:** X credits ($X.XX at $0.01\u002Fcredit)\n**Monthly Spend Cap:** X credits\n\n### Rate Limits (by model)\n\n| Model | Concurrency | Daily Limit | Used Today | Remaining |\n|-------|-------------|-------------|------------|-----------|\n| gen4.5 | 2 | 200 | 12 | 188 |\n| veo3.1 | 2 | 100 | 5 | 95 |\n| ... | ... | ... | ... | ... |\n",[941],{"type":40,"tag":65,"props":942,"children":943},{"__ignoreMap":169},[944],{"type":46,"value":939},{"type":40,"tag":53,"props":946,"children":947},{},[948],{"type":46,"value":949},"Key things to highlight:",{"type":40,"tag":951,"props":952,"children":953},"ul",{},[954,972,982,992],{"type":40,"tag":95,"props":955,"children":956},{},[957,962,964,970],{"type":40,"tag":57,"props":958,"children":959},{},[960],{"type":46,"value":961},"Credit balance",{"type":46,"value":963}," — convert to dollar value (",{"type":40,"tag":65,"props":965,"children":967},{"className":966},[],[968],{"type":46,"value":969},"credits × $0.01",{"type":46,"value":971},")",{"type":40,"tag":95,"props":973,"children":974},{},[975,980],{"type":40,"tag":57,"props":976,"children":977},{},[978],{"type":46,"value":979},"Per-model daily limits",{"type":46,"value":981}," — show how many generations remain today (rolling 24-hour window)",{"type":40,"tag":95,"props":983,"children":984},{},[985,990],{"type":40,"tag":57,"props":986,"children":987},{},[988],{"type":46,"value":989},"Concurrency",{"type":46,"value":991}," — how many tasks can run simultaneously per model",{"type":40,"tag":95,"props":993,"children":994},{},[995,1000],{"type":40,"tag":57,"props":996,"children":997},{},[998],{"type":46,"value":999},"Monthly cap",{"type":46,"value":1001}," — the max credit spend per month for their tier",{"type":40,"tag":79,"props":1003,"children":1005},{"id":1004},"step-4-optional-query-credit-usage-history",[1006],{"type":46,"value":1007},"Step 4 (Optional): Query Credit Usage History",{"type":40,"tag":53,"props":1009,"children":1010},{},[1011,1013,1019],{"type":46,"value":1012},"If the user wants to see historical usage, call ",{"type":40,"tag":65,"props":1014,"children":1016},{"className":1015},[],[1017],{"type":46,"value":1018},"POST \u002Fv1\u002Forganization\u002Fusage",{"type":46,"value":299},{"type":40,"tag":157,"props":1021,"children":1023},{"id":1022},"nodejs-1",[1024],{"type":46,"value":162},{"type":40,"tag":164,"props":1026,"children":1028},{"className":166,"code":1027,"language":168,"meta":169,"style":169},"const usage = await client.organization.retrieveUsage({\n  startDate: '2026-02-15',   \u002F\u002F ISO-8601, up to 90 days back\n  beforeDate: '2026-03-17'   \u002F\u002F exclusive end date\n});\nconsole.log(JSON.stringify(usage, null, 2));\n",[1029],{"type":40,"tag":65,"props":1030,"children":1031},{"__ignoreMap":169},[1032,1082,1117,1147,1163],{"type":40,"tag":175,"props":1033,"children":1034},{"class":177,"line":178},[1035,1039,1044,1048,1052,1056,1060,1064,1068,1073,1078],{"type":40,"tag":175,"props":1036,"children":1037},{"style":234},[1038],{"type":46,"value":237},{"type":40,"tag":175,"props":1040,"children":1041},{"style":188},[1042],{"type":46,"value":1043}," usage ",{"type":40,"tag":175,"props":1045,"children":1046},{"style":199},[1047],{"type":46,"value":247},{"type":40,"tag":175,"props":1049,"children":1050},{"style":182},[1051],{"type":46,"value":289},{"type":40,"tag":175,"props":1053,"children":1054},{"style":188},[1055],{"type":46,"value":294},{"type":40,"tag":175,"props":1057,"children":1058},{"style":199},[1059],{"type":46,"value":299},{"type":40,"tag":175,"props":1061,"children":1062},{"style":188},[1063],{"type":46,"value":304},{"type":40,"tag":175,"props":1065,"children":1066},{"style":199},[1067],{"type":46,"value":299},{"type":40,"tag":175,"props":1069,"children":1070},{"style":255},[1071],{"type":46,"value":1072},"retrieveUsage",{"type":40,"tag":175,"props":1074,"children":1075},{"style":188},[1076],{"type":46,"value":1077},"(",{"type":40,"tag":175,"props":1079,"children":1080},{"style":199},[1081],{"type":46,"value":570},{"type":40,"tag":175,"props":1083,"children":1084},{"class":177,"line":221},[1085,1090,1094,1098,1103,1107,1111],{"type":40,"tag":175,"props":1086,"children":1087},{"style":689},[1088],{"type":46,"value":1089},"  startDate",{"type":40,"tag":175,"props":1091,"children":1092},{"style":199},[1093],{"type":46,"value":592},{"type":40,"tag":175,"props":1095,"children":1096},{"style":199},[1097],{"type":46,"value":202},{"type":40,"tag":175,"props":1099,"children":1100},{"style":205},[1101],{"type":46,"value":1102},"2026-02-15",{"type":40,"tag":175,"props":1104,"children":1105},{"style":199},[1106],{"type":46,"value":213},{"type":40,"tag":175,"props":1108,"children":1109},{"style":199},[1110],{"type":46,"value":363},{"type":40,"tag":175,"props":1112,"children":1114},{"style":1113},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1115],{"type":46,"value":1116},"   \u002F\u002F ISO-8601, up to 90 days back\n",{"type":40,"tag":175,"props":1118,"children":1119},{"class":177,"line":230},[1120,1125,1129,1133,1138,1142],{"type":40,"tag":175,"props":1121,"children":1122},{"style":689},[1123],{"type":46,"value":1124},"  beforeDate",{"type":40,"tag":175,"props":1126,"children":1127},{"style":199},[1128],{"type":46,"value":592},{"type":40,"tag":175,"props":1130,"children":1131},{"style":199},[1132],{"type":46,"value":202},{"type":40,"tag":175,"props":1134,"children":1135},{"style":205},[1136],{"type":46,"value":1137},"2026-03-17",{"type":40,"tag":175,"props":1139,"children":1140},{"style":199},[1141],{"type":46,"value":213},{"type":40,"tag":175,"props":1143,"children":1144},{"style":1113},[1145],{"type":46,"value":1146},"   \u002F\u002F exclusive end date\n",{"type":40,"tag":175,"props":1148,"children":1149},{"class":177,"line":270},[1150,1155,1159],{"type":40,"tag":175,"props":1151,"children":1152},{"style":199},[1153],{"type":46,"value":1154},"}",{"type":40,"tag":175,"props":1156,"children":1157},{"style":188},[1158],{"type":46,"value":971},{"type":40,"tag":175,"props":1160,"children":1161},{"style":199},[1162],{"type":46,"value":218},{"type":40,"tag":175,"props":1164,"children":1165},{"class":177,"line":324},[1166,1170,1174,1178,1182,1186,1190,1195,1199,1203,1207,1211],{"type":40,"tag":175,"props":1167,"children":1168},{"style":188},[1169],{"type":46,"value":330},{"type":40,"tag":175,"props":1171,"children":1172},{"style":199},[1173],{"type":46,"value":299},{"type":40,"tag":175,"props":1175,"children":1176},{"style":255},[1177],{"type":46,"value":339},{"type":40,"tag":175,"props":1179,"children":1180},{"style":188},[1181],{"type":46,"value":344},{"type":40,"tag":175,"props":1183,"children":1184},{"style":199},[1185],{"type":46,"value":299},{"type":40,"tag":175,"props":1187,"children":1188},{"style":255},[1189],{"type":46,"value":353},{"type":40,"tag":175,"props":1191,"children":1192},{"style":188},[1193],{"type":46,"value":1194},"(usage",{"type":40,"tag":175,"props":1196,"children":1197},{"style":199},[1198],{"type":46,"value":363},{"type":40,"tag":175,"props":1200,"children":1201},{"style":199},[1202],{"type":46,"value":368},{"type":40,"tag":175,"props":1204,"children":1205},{"style":371},[1206],{"type":46,"value":374},{"type":40,"tag":175,"props":1208,"children":1209},{"style":188},[1210],{"type":46,"value":379},{"type":40,"tag":175,"props":1212,"children":1213},{"style":199},[1214],{"type":46,"value":218},{"type":40,"tag":157,"props":1216,"children":1218},{"id":1217},"python-1",[1219],{"type":46,"value":389},{"type":40,"tag":164,"props":1221,"children":1223},{"className":392,"code":1222,"language":386,"meta":169,"style":169},"usage = client.organization.retrieve_usage(\n    start_date=\"2026-02-15\",\n    before_date=\"2026-03-17\"\n)\nprint(usage)\n",[1224],{"type":40,"tag":65,"props":1225,"children":1226},{"__ignoreMap":169},[1227,1235,1243,1251,1259],{"type":40,"tag":175,"props":1228,"children":1229},{"class":177,"line":178},[1230],{"type":40,"tag":175,"props":1231,"children":1232},{},[1233],{"type":46,"value":1234},"usage = client.organization.retrieve_usage(\n",{"type":40,"tag":175,"props":1236,"children":1237},{"class":177,"line":221},[1238],{"type":40,"tag":175,"props":1239,"children":1240},{},[1241],{"type":46,"value":1242},"    start_date=\"2026-02-15\",\n",{"type":40,"tag":175,"props":1244,"children":1245},{"class":177,"line":230},[1246],{"type":40,"tag":175,"props":1247,"children":1248},{},[1249],{"type":46,"value":1250},"    before_date=\"2026-03-17\"\n",{"type":40,"tag":175,"props":1252,"children":1253},{"class":177,"line":270},[1254],{"type":40,"tag":175,"props":1255,"children":1256},{},[1257],{"type":46,"value":1258},")\n",{"type":40,"tag":175,"props":1260,"children":1261},{"class":177,"line":324},[1262],{"type":40,"tag":175,"props":1263,"children":1264},{},[1265],{"type":46,"value":1266},"print(usage)\n",{"type":40,"tag":157,"props":1268,"children":1270},{"id":1269},"curl-fetch-no-sdk-1",[1271],{"type":46,"value":442},{"type":40,"tag":164,"props":1273,"children":1275},{"className":445,"code":1274,"language":447,"meta":169,"style":169},"curl -s -X POST https:\u002F\u002Fapi.dev.runwayml.com\u002Fv1\u002Forganization\u002Fusage \\\n  -H \"Authorization: Bearer $RUNWAYML_API_SECRET\" \\\n  -H \"X-Runway-Version: 2024-11-06\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"startDate\": \"2026-02-15\", \"beforeDate\": \"2026-03-17\"}' \\\n  | python3 -m json.tool\n",[1276],{"type":40,"tag":65,"props":1277,"children":1278},{"__ignoreMap":169},[1279,1309,1336,1359,1383,1408],{"type":40,"tag":175,"props":1280,"children":1281},{"class":177,"line":178},[1282,1286,1290,1295,1300,1305],{"type":40,"tag":175,"props":1283,"children":1284},{"style":457},[1285],{"type":46,"value":460},{"type":40,"tag":175,"props":1287,"children":1288},{"style":205},[1289],{"type":46,"value":465},{"type":40,"tag":175,"props":1291,"children":1292},{"style":205},[1293],{"type":46,"value":1294}," -X",{"type":40,"tag":175,"props":1296,"children":1297},{"style":205},[1298],{"type":46,"value":1299}," POST",{"type":40,"tag":175,"props":1301,"children":1302},{"style":205},[1303],{"type":46,"value":1304}," https:\u002F\u002Fapi.dev.runwayml.com\u002Fv1\u002Forganization\u002Fusage",{"type":40,"tag":175,"props":1306,"children":1307},{"style":188},[1308],{"type":46,"value":475},{"type":40,"tag":175,"props":1310,"children":1311},{"class":177,"line":221},[1312,1316,1320,1324,1328,1332],{"type":40,"tag":175,"props":1313,"children":1314},{"style":205},[1315],{"type":46,"value":483},{"type":40,"tag":175,"props":1317,"children":1318},{"style":199},[1319],{"type":46,"value":488},{"type":40,"tag":175,"props":1321,"children":1322},{"style":205},[1323],{"type":46,"value":493},{"type":40,"tag":175,"props":1325,"children":1326},{"style":188},[1327],{"type":46,"value":498},{"type":40,"tag":175,"props":1329,"children":1330},{"style":199},[1331],{"type":46,"value":503},{"type":40,"tag":175,"props":1333,"children":1334},{"style":188},[1335],{"type":46,"value":475},{"type":40,"tag":175,"props":1337,"children":1338},{"class":177,"line":230},[1339,1343,1347,1351,1355],{"type":40,"tag":175,"props":1340,"children":1341},{"style":205},[1342],{"type":46,"value":483},{"type":40,"tag":175,"props":1344,"children":1345},{"style":199},[1346],{"type":46,"value":488},{"type":40,"tag":175,"props":1348,"children":1349},{"style":205},[1350],{"type":46,"value":523},{"type":40,"tag":175,"props":1352,"children":1353},{"style":199},[1354],{"type":46,"value":503},{"type":40,"tag":175,"props":1356,"children":1357},{"style":188},[1358],{"type":46,"value":475},{"type":40,"tag":175,"props":1360,"children":1361},{"class":177,"line":270},[1362,1366,1370,1375,1379],{"type":40,"tag":175,"props":1363,"children":1364},{"style":205},[1365],{"type":46,"value":483},{"type":40,"tag":175,"props":1367,"children":1368},{"style":199},[1369],{"type":46,"value":488},{"type":40,"tag":175,"props":1371,"children":1372},{"style":205},[1373],{"type":46,"value":1374},"Content-Type: application\u002Fjson",{"type":40,"tag":175,"props":1376,"children":1377},{"style":199},[1378],{"type":46,"value":503},{"type":40,"tag":175,"props":1380,"children":1381},{"style":188},[1382],{"type":46,"value":475},{"type":40,"tag":175,"props":1384,"children":1385},{"class":177,"line":324},[1386,1391,1395,1400,1404],{"type":40,"tag":175,"props":1387,"children":1388},{"style":205},[1389],{"type":46,"value":1390},"  -d",{"type":40,"tag":175,"props":1392,"children":1393},{"style":199},[1394],{"type":46,"value":202},{"type":40,"tag":175,"props":1396,"children":1397},{"style":205},[1398],{"type":46,"value":1399},"{\"startDate\": \"2026-02-15\", \"beforeDate\": \"2026-03-17\"}",{"type":40,"tag":175,"props":1401,"children":1402},{"style":199},[1403],{"type":46,"value":213},{"type":40,"tag":175,"props":1405,"children":1406},{"style":188},[1407],{"type":46,"value":475},{"type":40,"tag":175,"props":1409,"children":1410},{"class":177,"line":680},[1411,1416,1420,1424],{"type":40,"tag":175,"props":1412,"children":1413},{"style":199},[1414],{"type":46,"value":1415},"  |",{"type":40,"tag":175,"props":1417,"children":1418},{"style":457},[1419],{"type":46,"value":537},{"type":40,"tag":175,"props":1421,"children":1422},{"style":205},[1423],{"type":46,"value":542},{"type":40,"tag":175,"props":1425,"children":1426},{"style":205},[1427],{"type":46,"value":547},{"type":40,"tag":157,"props":1429,"children":1431},{"id":1430},"response-shape-1",[1432],{"type":46,"value":553},{"type":40,"tag":164,"props":1434,"children":1436},{"className":556,"code":1435,"language":558,"meta":169,"style":169},"{\n  \"results\": [\n    {\n      \"date\": \"2026-03-16\",\n      \"usedCredits\": [\n        { \"model\": \"gen4.5\", \"amount\": 120 },\n        { \"model\": \"veo3.1\", \"amount\": 400 }\n      ]\n    }\n  ],\n  \"models\": [\"gen4.5\", \"veo3.1\"]\n}\n",[1437],{"type":40,"tag":65,"props":1438,"children":1439},{"__ignoreMap":169},[1440,1447,1472,1480,1517,1541,1609,1675,1683,1690,1698,1755],{"type":40,"tag":175,"props":1441,"children":1442},{"class":177,"line":178},[1443],{"type":40,"tag":175,"props":1444,"children":1445},{"style":199},[1446],{"type":46,"value":570},{"type":40,"tag":175,"props":1448,"children":1449},{"class":177,"line":221},[1450,1454,1459,1463,1467],{"type":40,"tag":175,"props":1451,"children":1452},{"style":199},[1453],{"type":46,"value":578},{"type":40,"tag":175,"props":1455,"children":1456},{"style":234},[1457],{"type":46,"value":1458},"results",{"type":40,"tag":175,"props":1460,"children":1461},{"style":199},[1462],{"type":46,"value":503},{"type":40,"tag":175,"props":1464,"children":1465},{"style":199},[1466],{"type":46,"value":592},{"type":40,"tag":175,"props":1468,"children":1469},{"style":199},[1470],{"type":46,"value":1471}," [\n",{"type":40,"tag":175,"props":1473,"children":1474},{"class":177,"line":230},[1475],{"type":40,"tag":175,"props":1476,"children":1477},{"style":199},[1478],{"type":46,"value":1479},"    {\n",{"type":40,"tag":175,"props":1481,"children":1482},{"class":177,"line":270},[1483,1487,1492,1496,1500,1504,1509,1513],{"type":40,"tag":175,"props":1484,"children":1485},{"style":199},[1486],{"type":46,"value":660},{"type":40,"tag":175,"props":1488,"children":1489},{"style":457},[1490],{"type":46,"value":1491},"date",{"type":40,"tag":175,"props":1493,"children":1494},{"style":199},[1495],{"type":46,"value":503},{"type":40,"tag":175,"props":1497,"children":1498},{"style":199},[1499],{"type":46,"value":592},{"type":40,"tag":175,"props":1501,"children":1502},{"style":199},[1503],{"type":46,"value":488},{"type":40,"tag":175,"props":1505,"children":1506},{"style":205},[1507],{"type":46,"value":1508},"2026-03-16",{"type":40,"tag":175,"props":1510,"children":1511},{"style":199},[1512],{"type":46,"value":503},{"type":40,"tag":175,"props":1514,"children":1515},{"style":199},[1516],{"type":46,"value":628},{"type":40,"tag":175,"props":1518,"children":1519},{"class":177,"line":324},[1520,1524,1529,1533,1537],{"type":40,"tag":175,"props":1521,"children":1522},{"style":199},[1523],{"type":46,"value":660},{"type":40,"tag":175,"props":1525,"children":1526},{"style":457},[1527],{"type":46,"value":1528},"usedCredits",{"type":40,"tag":175,"props":1530,"children":1531},{"style":199},[1532],{"type":46,"value":503},{"type":40,"tag":175,"props":1534,"children":1535},{"style":199},[1536],{"type":46,"value":592},{"type":40,"tag":175,"props":1538,"children":1539},{"style":199},[1540],{"type":46,"value":1471},{"type":40,"tag":175,"props":1542,"children":1543},{"class":177,"line":680},[1544,1549,1553,1558,1562,1566,1570,1574,1578,1582,1586,1591,1595,1599,1604],{"type":40,"tag":175,"props":1545,"children":1546},{"style":199},[1547],{"type":46,"value":1548},"        {",{"type":40,"tag":175,"props":1550,"children":1551},{"style":199},[1552],{"type":46,"value":488},{"type":40,"tag":175,"props":1554,"children":1555},{"style":371},[1556],{"type":46,"value":1557},"model",{"type":40,"tag":175,"props":1559,"children":1560},{"style":199},[1561],{"type":46,"value":503},{"type":40,"tag":175,"props":1563,"children":1564},{"style":199},[1565],{"type":46,"value":592},{"type":40,"tag":175,"props":1567,"children":1568},{"style":199},[1569],{"type":46,"value":488},{"type":40,"tag":175,"props":1571,"children":1572},{"style":205},[1573],{"type":46,"value":665},{"type":40,"tag":175,"props":1575,"children":1576},{"style":199},[1577],{"type":46,"value":503},{"type":40,"tag":175,"props":1579,"children":1580},{"style":199},[1581],{"type":46,"value":363},{"type":40,"tag":175,"props":1583,"children":1584},{"style":199},[1585],{"type":46,"value":488},{"type":40,"tag":175,"props":1587,"children":1588},{"style":371},[1589],{"type":46,"value":1590},"amount",{"type":40,"tag":175,"props":1592,"children":1593},{"style":199},[1594],{"type":46,"value":503},{"type":40,"tag":175,"props":1596,"children":1597},{"style":199},[1598],{"type":46,"value":592},{"type":40,"tag":175,"props":1600,"children":1601},{"style":371},[1602],{"type":46,"value":1603}," 120",{"type":40,"tag":175,"props":1605,"children":1606},{"style":199},[1607],{"type":46,"value":1608}," },\n",{"type":40,"tag":175,"props":1610,"children":1611},{"class":177,"line":711},[1612,1616,1620,1624,1628,1632,1636,1641,1645,1649,1653,1657,1661,1665,1670],{"type":40,"tag":175,"props":1613,"children":1614},{"style":199},[1615],{"type":46,"value":1548},{"type":40,"tag":175,"props":1617,"children":1618},{"style":199},[1619],{"type":46,"value":488},{"type":40,"tag":175,"props":1621,"children":1622},{"style":371},[1623],{"type":46,"value":1557},{"type":40,"tag":175,"props":1625,"children":1626},{"style":199},[1627],{"type":46,"value":503},{"type":40,"tag":175,"props":1629,"children":1630},{"style":199},[1631],{"type":46,"value":592},{"type":40,"tag":175,"props":1633,"children":1634},{"style":199},[1635],{"type":46,"value":488},{"type":40,"tag":175,"props":1637,"children":1638},{"style":205},[1639],{"type":46,"value":1640},"veo3.1",{"type":40,"tag":175,"props":1642,"children":1643},{"style":199},[1644],{"type":46,"value":503},{"type":40,"tag":175,"props":1646,"children":1647},{"style":199},[1648],{"type":46,"value":363},{"type":40,"tag":175,"props":1650,"children":1651},{"style":199},[1652],{"type":46,"value":488},{"type":40,"tag":175,"props":1654,"children":1655},{"style":371},[1656],{"type":46,"value":1590},{"type":40,"tag":175,"props":1658,"children":1659},{"style":199},[1660],{"type":46,"value":503},{"type":40,"tag":175,"props":1662,"children":1663},{"style":199},[1664],{"type":46,"value":592},{"type":40,"tag":175,"props":1666,"children":1667},{"style":371},[1668],{"type":46,"value":1669}," 400",{"type":40,"tag":175,"props":1671,"children":1672},{"style":199},[1673],{"type":46,"value":1674}," }\n",{"type":40,"tag":175,"props":1676,"children":1677},{"class":177,"line":737},[1678],{"type":40,"tag":175,"props":1679,"children":1680},{"style":199},[1681],{"type":46,"value":1682},"      ]\n",{"type":40,"tag":175,"props":1684,"children":1685},{"class":177,"line":746},[1686],{"type":40,"tag":175,"props":1687,"children":1688},{"style":199},[1689],{"type":46,"value":752},{"type":40,"tag":175,"props":1691,"children":1692},{"class":177,"line":755},[1693],{"type":40,"tag":175,"props":1694,"children":1695},{"style":199},[1696],{"type":46,"value":1697},"  ],\n",{"type":40,"tag":175,"props":1699,"children":1700},{"class":177,"line":764},[1701,1705,1709,1713,1717,1722,1726,1730,1734,1738,1742,1746,1750],{"type":40,"tag":175,"props":1702,"children":1703},{"style":199},[1704],{"type":46,"value":578},{"type":40,"tag":175,"props":1706,"children":1707},{"style":234},[1708],{"type":46,"value":640},{"type":40,"tag":175,"props":1710,"children":1711},{"style":199},[1712],{"type":46,"value":503},{"type":40,"tag":175,"props":1714,"children":1715},{"style":199},[1716],{"type":46,"value":592},{"type":40,"tag":175,"props":1718,"children":1719},{"style":199},[1720],{"type":46,"value":1721}," [",{"type":40,"tag":175,"props":1723,"children":1724},{"style":199},[1725],{"type":46,"value":503},{"type":40,"tag":175,"props":1727,"children":1728},{"style":205},[1729],{"type":46,"value":665},{"type":40,"tag":175,"props":1731,"children":1732},{"style":199},[1733],{"type":46,"value":503},{"type":40,"tag":175,"props":1735,"children":1736},{"style":199},[1737],{"type":46,"value":363},{"type":40,"tag":175,"props":1739,"children":1740},{"style":199},[1741],{"type":46,"value":488},{"type":40,"tag":175,"props":1743,"children":1744},{"style":205},[1745],{"type":46,"value":1640},{"type":40,"tag":175,"props":1747,"children":1748},{"style":199},[1749],{"type":46,"value":503},{"type":40,"tag":175,"props":1751,"children":1752},{"style":199},[1753],{"type":46,"value":1754},"]\n",{"type":40,"tag":175,"props":1756,"children":1757},{"class":177,"line":794},[1758],{"type":40,"tag":175,"props":1759,"children":1760},{"style":199},[1761],{"type":46,"value":923},{"type":40,"tag":53,"props":1763,"children":1764},{},[1765],{"type":46,"value":1766},"Present this as a usage breakdown:",{"type":40,"tag":164,"props":1768,"children":1771},{"className":1769,"code":1770,"language":46},[938],"### Credit Usage (Feb 15 – Mar 17)\n\n| Date | Model | Credits Used |\n|------|-------|-------------|\n| 2026-03-16 | gen4.5 | 120 |\n| 2026-03-16 | veo3.1 | 400 |\n| ... | ... | ... |\n\n**Total:** X credits\n",[1772],{"type":40,"tag":65,"props":1773,"children":1774},{"__ignoreMap":169},[1775],{"type":46,"value":1770},{"type":40,"tag":79,"props":1777,"children":1779},{"id":1778},"tier-reference",[1780],{"type":46,"value":1781},"Tier Reference",{"type":40,"tag":53,"props":1783,"children":1784},{},[1785],{"type":46,"value":1786},"If the user asks about upgrading, share the tier breakdown:",{"type":40,"tag":1788,"props":1789,"children":1790},"table",{},[1791,1824],{"type":40,"tag":1792,"props":1793,"children":1794},"thead",{},[1795],{"type":40,"tag":1796,"props":1797,"children":1798},"tr",{},[1799,1805,1809,1814,1819],{"type":40,"tag":1800,"props":1801,"children":1802},"th",{},[1803],{"type":46,"value":1804},"Tier",{"type":40,"tag":1800,"props":1806,"children":1807},{},[1808],{"type":46,"value":989},{"type":40,"tag":1800,"props":1810,"children":1811},{},[1812],{"type":46,"value":1813},"Daily Gens",{"type":40,"tag":1800,"props":1815,"children":1816},{},[1817],{"type":46,"value":1818},"Monthly Cap",{"type":40,"tag":1800,"props":1820,"children":1821},{},[1822],{"type":46,"value":1823},"Unlock Requirement",{"type":40,"tag":1825,"props":1826,"children":1827},"tbody",{},[1828,1857,1885,1912,1940],{"type":40,"tag":1796,"props":1829,"children":1830},{},[1831,1837,1842,1847,1852],{"type":40,"tag":1832,"props":1833,"children":1834},"td",{},[1835],{"type":46,"value":1836},"1 (default)",{"type":40,"tag":1832,"props":1838,"children":1839},{},[1840],{"type":46,"value":1841},"1–2",{"type":40,"tag":1832,"props":1843,"children":1844},{},[1845],{"type":46,"value":1846},"50–200",{"type":40,"tag":1832,"props":1848,"children":1849},{},[1850],{"type":46,"value":1851},"$100",{"type":40,"tag":1832,"props":1853,"children":1854},{},[1855],{"type":46,"value":1856},"—",{"type":40,"tag":1796,"props":1858,"children":1859},{},[1860,1865,1870,1875,1880],{"type":40,"tag":1832,"props":1861,"children":1862},{},[1863],{"type":46,"value":1864},"2",{"type":40,"tag":1832,"props":1866,"children":1867},{},[1868],{"type":46,"value":1869},"3",{"type":40,"tag":1832,"props":1871,"children":1872},{},[1873],{"type":46,"value":1874},"500–1,000",{"type":40,"tag":1832,"props":1876,"children":1877},{},[1878],{"type":46,"value":1879},"$500",{"type":40,"tag":1832,"props":1881,"children":1882},{},[1883],{"type":46,"value":1884},"1 day + $50 spent",{"type":40,"tag":1796,"props":1886,"children":1887},{},[1888,1892,1897,1902,1907],{"type":40,"tag":1832,"props":1889,"children":1890},{},[1891],{"type":46,"value":1869},{"type":40,"tag":1832,"props":1893,"children":1894},{},[1895],{"type":46,"value":1896},"5",{"type":40,"tag":1832,"props":1898,"children":1899},{},[1900],{"type":46,"value":1901},"1,000–2,000",{"type":40,"tag":1832,"props":1903,"children":1904},{},[1905],{"type":46,"value":1906},"$2,000",{"type":40,"tag":1832,"props":1908,"children":1909},{},[1910],{"type":46,"value":1911},"7 days + $100 spent",{"type":40,"tag":1796,"props":1913,"children":1914},{},[1915,1920,1925,1930,1935],{"type":40,"tag":1832,"props":1916,"children":1917},{},[1918],{"type":46,"value":1919},"4",{"type":40,"tag":1832,"props":1921,"children":1922},{},[1923],{"type":46,"value":1924},"10",{"type":40,"tag":1832,"props":1926,"children":1927},{},[1928],{"type":46,"value":1929},"5,000–10,000",{"type":40,"tag":1832,"props":1931,"children":1932},{},[1933],{"type":46,"value":1934},"$20,000",{"type":40,"tag":1832,"props":1936,"children":1937},{},[1938],{"type":46,"value":1939},"14 days + $1,000 spent",{"type":40,"tag":1796,"props":1941,"children":1942},{},[1943,1947,1952,1957,1962],{"type":40,"tag":1832,"props":1944,"children":1945},{},[1946],{"type":46,"value":1896},{"type":40,"tag":1832,"props":1948,"children":1949},{},[1950],{"type":46,"value":1951},"20",{"type":40,"tag":1832,"props":1953,"children":1954},{},[1955],{"type":46,"value":1956},"25,000–30,000",{"type":40,"tag":1832,"props":1958,"children":1959},{},[1960],{"type":46,"value":1961},"$100,000",{"type":40,"tag":1832,"props":1963,"children":1964},{},[1965],{"type":46,"value":1966},"7 days + $5,000 spent",{"type":40,"tag":53,"props":1968,"children":1969},{},[1970],{"type":46,"value":1971},"Tiers upgrade automatically once the spend and time requirements are met.",{"type":40,"tag":79,"props":1973,"children":1975},{"id":1974},"troubleshooting",[1976],{"type":46,"value":1977},"Troubleshooting",{"type":40,"tag":1788,"props":1979,"children":1980},{},[1981,2002],{"type":40,"tag":1792,"props":1982,"children":1983},{},[1984],{"type":40,"tag":1796,"props":1985,"children":1986},{},[1987,1992,1997],{"type":40,"tag":1800,"props":1988,"children":1989},{},[1990],{"type":46,"value":1991},"Issue",{"type":40,"tag":1800,"props":1993,"children":1994},{},[1995],{"type":46,"value":1996},"Cause",{"type":40,"tag":1800,"props":1998,"children":1999},{},[2000],{"type":46,"value":2001},"Fix",{"type":40,"tag":1825,"props":2003,"children":2004},{},[2005,2032,2065,2083],{"type":40,"tag":1796,"props":2006,"children":2007},{},[2008,2017,2022],{"type":40,"tag":1832,"props":2009,"children":2010},{},[2011],{"type":40,"tag":65,"props":2012,"children":2014},{"className":2013},[],[2015],{"type":46,"value":2016},"401 Unauthorized",{"type":40,"tag":1832,"props":2018,"children":2019},{},[2020],{"type":46,"value":2021},"Invalid or missing API key",{"type":40,"tag":1832,"props":2023,"children":2024},{},[2025,2027],{"type":46,"value":2026},"Re-run ",{"type":40,"tag":65,"props":2028,"children":2030},{"className":2029},[],[2031],{"type":46,"value":70},{"type":40,"tag":1796,"props":2033,"children":2034},{},[2035,2045,2050],{"type":40,"tag":1832,"props":2036,"children":2037},{},[2038,2043],{"type":40,"tag":65,"props":2039,"children":2041},{"className":2040},[],[2042],{"type":46,"value":774},{"type":46,"value":2044}," is 0",{"type":40,"tag":1832,"props":2046,"children":2047},{},[2048],{"type":46,"value":2049},"No credits purchased",{"type":40,"tag":1832,"props":2051,"children":2052},{},[2053,2055,2063],{"type":46,"value":2054},"Purchase at ",{"type":40,"tag":2056,"props":2057,"children":2061},"a",{"href":2058,"rel":2059},"https:\u002F\u002Fdev.runwayml.com\u002F",[2060],"nofollow",[2062],{"type":46,"value":2058},{"type":46,"value":2064}," → Billing (min $10)",{"type":40,"tag":1796,"props":2066,"children":2067},{},[2068,2073,2078],{"type":40,"tag":1832,"props":2069,"children":2070},{},[2071],{"type":46,"value":2072},"Daily limit reached",{"type":40,"tag":1832,"props":2074,"children":2075},{},[2076],{"type":46,"value":2077},"Rolling 24-hour quota exhausted",{"type":40,"tag":1832,"props":2079,"children":2080},{},[2081],{"type":46,"value":2082},"Wait for the window to reset, or upgrade tier",{"type":40,"tag":1796,"props":2084,"children":2085},{},[2086,2091,2096],{"type":40,"tag":1832,"props":2087,"children":2088},{},[2089],{"type":46,"value":2090},"All models show 0 daily limit",{"type":40,"tag":1832,"props":2092,"children":2093},{},[2094],{"type":46,"value":2095},"Tier 1 restrictions",{"type":40,"tag":1832,"props":2097,"children":2098},{},[2099],{"type":46,"value":2100},"Check that credits have been purchased",{"type":40,"tag":2102,"props":2103,"children":2104},"style",{},[2105],{"type":46,"value":2106},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2108,"total":908},[2109,2128,2137,2143,2158,2173,2186,2197,2211,2229,2240,2260],{"slug":2110,"name":2110,"fn":2111,"description":2112,"org":2113,"tags":2114,"stars":21,"repoUrl":22,"updatedAt":2127},"rw-api-reference","look up Runway API reference","Complete reference for Runway's public API: models, endpoints, costs, limits, and types",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2115,2118,2121,2124],{"name":2116,"slug":2117,"type":16},"AI Infrastructure","ai-infrastructure",{"name":2119,"slug":2120,"type":16},"API Development","api-development",{"name":2122,"slug":2123,"type":16},"Reference","reference",{"name":2125,"slug":2126,"type":16},"Video","video","2026-04-08T04:41:58.820783",{"slug":2129,"name":2129,"fn":2130,"description":2131,"org":2132,"tags":2133,"stars":21,"repoUrl":22,"updatedAt":2136},"rw-check-compatibility","verify codebase compatibility with the Runway API","Analyze a user's codebase to verify it can use Runway's public API (server-side requirement)",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2134,2135],{"name":2119,"slug":2120,"type":16},{"name":9,"slug":8,"type":16},"2026-04-08T04:42:01.271257",{"slug":4,"name":4,"fn":5,"description":6,"org":2138,"tags":2139,"stars":21,"repoUrl":22,"updatedAt":23},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2140,2141,2142],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"slug":2144,"name":2144,"fn":2145,"description":2146,"org":2147,"tags":2148,"stars":21,"repoUrl":22,"updatedAt":2157},"rw-fetch-api-reference","retrieve Runway API reference","Retrieve the latest Runway API reference from docs.dev.runwayml.com and use it as the authoritative source before any integration work",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2149,2150,2153,2156],{"name":2119,"slug":2120,"type":16},{"name":2151,"slug":2152,"type":16},"Documentation","documentation",{"name":2154,"slug":2155,"type":16},"Research","research",{"name":9,"slug":8,"type":16},"2026-04-08T04:42:07.604739",{"slug":2159,"name":2159,"fn":2160,"description":2161,"org":2162,"tags":2163,"stars":21,"repoUrl":22,"updatedAt":2172},"rw-generate-audio","generate audio with Runway API","Generate audio using the Runway API via runnable scripts. Supports TTS, sound effects, voice isolation, dubbing, and voice conversion.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2164,2165,2168,2171],{"name":2116,"slug":2117,"type":16},{"name":2166,"slug":2167,"type":16},"Audio","audio",{"name":2169,"slug":2170,"type":16},"Creative","creative",{"name":9,"slug":8,"type":16},"2026-04-17T04:51:59.892185",{"slug":2174,"name":2174,"fn":2175,"description":2176,"org":2177,"tags":2178,"stars":21,"repoUrl":22,"updatedAt":2185},"rw-generate-image","generate images with Runway API","Generate images directly using the Runway API via runnable scripts. Supports text-to-image with optional reference images.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2179,2180,2181,2184],{"name":2116,"slug":2117,"type":16},{"name":2169,"slug":2170,"type":16},{"name":2182,"slug":2183,"type":16},"Image Generation","image-generation",{"name":9,"slug":8,"type":16},"2026-04-17T04:52:01.158325",{"slug":2187,"name":2187,"fn":2188,"description":2189,"org":2190,"tags":2191,"stars":21,"repoUrl":22,"updatedAt":2196},"rw-generate-video","generate videos with Runway API","Generate videos directly using the Runway API via runnable scripts. Supports text-to-video, image-to-video, and video-to-video with seedance2, gen4.5, veo3, and more.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2192,2193,2194,2195],{"name":2116,"slug":2117,"type":16},{"name":2169,"slug":2170,"type":16},{"name":9,"slug":8,"type":16},{"name":2125,"slug":2126,"type":16},"2026-04-17T04:51:58.600919",{"slug":2198,"name":2198,"fn":2199,"description":2200,"org":2201,"tags":2202,"stars":21,"repoUrl":22,"updatedAt":2210},"rw-integrate-audio","integrate Runway audio APIs","Help users integrate Runway audio APIs (TTS, sound effects, voice isolation, dubbing)",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2203,2204,2205,2206,2207],{"name":2119,"slug":2120,"type":16},{"name":2166,"slug":2167,"type":16},{"name":2169,"slug":2170,"type":16},{"name":9,"slug":8,"type":16},{"name":2208,"slug":2209,"type":16},"Speech","speech","2026-04-08T04:42:10.081814",{"slug":2212,"name":2212,"fn":2213,"description":2214,"org":2215,"tags":2216,"stars":21,"repoUrl":22,"updatedAt":2228},"rw-integrate-character-embed","embed Runway characters in React apps","Help users embed Runway Character avatar calls in React apps using the @runwayml\u002Favatars-react SDK",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2217,2218,2221,2224,2225],{"name":2119,"slug":2120,"type":16},{"name":2219,"slug":2220,"type":16},"Frontend","frontend",{"name":2222,"slug":2223,"type":16},"React","react",{"name":9,"slug":8,"type":16},{"name":2226,"slug":2227,"type":16},"UI Components","ui-components","2026-04-08T04:42:08.849481",{"slug":2230,"name":2230,"fn":2231,"description":2232,"org":2233,"tags":2234,"stars":21,"repoUrl":22,"updatedAt":2239},"rw-integrate-characters","integrate Runway conversational characters","Help users create Runway Characters (GWM-1 avatars) and integrate real-time conversational sessions into their apps",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2235,2236,2237,2238],{"name":2119,"slug":2120,"type":16},{"name":2166,"slug":2167,"type":16},{"name":2169,"slug":2170,"type":16},{"name":9,"slug":8,"type":16},"2026-04-08T04:42:06.171483",{"slug":2241,"name":2241,"fn":2242,"description":2243,"org":2244,"tags":2245,"stars":21,"repoUrl":22,"updatedAt":2259},"rw-integrate-documents","add documents to Runway Characters","Help users add knowledge base documents to Runway Characters for domain-specific conversations",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2246,2249,2252,2255,2258],{"name":2247,"slug":2248,"type":16},"Agents","agents",{"name":2250,"slug":2251,"type":16},"AI Context","ai-context",{"name":2253,"slug":2254,"type":16},"Documents","documents",{"name":2256,"slug":2257,"type":16},"Knowledge Management","knowledge-management",{"name":9,"slug":8,"type":16},"2026-04-08T04:42:04.95186",{"slug":2261,"name":2261,"fn":2262,"description":2263,"org":2264,"tags":2265,"stars":21,"repoUrl":22,"updatedAt":2270},"rw-integrate-image","integrate Runway image generation APIs","Help users integrate Runway image generation APIs (text-to-image with reference images)",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2266,2267,2268,2269],{"name":2119,"slug":2120,"type":16},{"name":2169,"slug":2170,"type":16},{"name":2182,"slug":2183,"type":16},{"name":9,"slug":8,"type":16},"2026-04-08T04:42:11.322008",{"items":2272,"total":900},[2273,2280,2285,2291,2298,2305,2312],{"slug":2110,"name":2110,"fn":2111,"description":2112,"org":2274,"tags":2275,"stars":21,"repoUrl":22,"updatedAt":2127},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2276,2277,2278,2279],{"name":2116,"slug":2117,"type":16},{"name":2119,"slug":2120,"type":16},{"name":2122,"slug":2123,"type":16},{"name":2125,"slug":2126,"type":16},{"slug":2129,"name":2129,"fn":2130,"description":2131,"org":2281,"tags":2282,"stars":21,"repoUrl":22,"updatedAt":2136},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2283,2284],{"name":2119,"slug":2120,"type":16},{"name":9,"slug":8,"type":16},{"slug":4,"name":4,"fn":5,"description":6,"org":2286,"tags":2287,"stars":21,"repoUrl":22,"updatedAt":23},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2288,2289,2290],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"slug":2144,"name":2144,"fn":2145,"description":2146,"org":2292,"tags":2293,"stars":21,"repoUrl":22,"updatedAt":2157},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2294,2295,2296,2297],{"name":2119,"slug":2120,"type":16},{"name":2151,"slug":2152,"type":16},{"name":2154,"slug":2155,"type":16},{"name":9,"slug":8,"type":16},{"slug":2159,"name":2159,"fn":2160,"description":2161,"org":2299,"tags":2300,"stars":21,"repoUrl":22,"updatedAt":2172},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2301,2302,2303,2304],{"name":2116,"slug":2117,"type":16},{"name":2166,"slug":2167,"type":16},{"name":2169,"slug":2170,"type":16},{"name":9,"slug":8,"type":16},{"slug":2174,"name":2174,"fn":2175,"description":2176,"org":2306,"tags":2307,"stars":21,"repoUrl":22,"updatedAt":2185},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2308,2309,2310,2311],{"name":2116,"slug":2117,"type":16},{"name":2169,"slug":2170,"type":16},{"name":2182,"slug":2183,"type":16},{"name":9,"slug":8,"type":16},{"slug":2187,"name":2187,"fn":2188,"description":2189,"org":2313,"tags":2314,"stars":21,"repoUrl":22,"updatedAt":2196},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2315,2316,2317,2318],{"name":2116,"slug":2117,"type":16},{"name":2169,"slug":2170,"type":16},{"name":9,"slug":8,"type":16},{"name":2125,"slug":2126,"type":16}]