[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vapi-create-call":3,"mdc-dh7bc8-key":43,"related-org-vapi-create-call":3754,"related-repo-vapi-create-call":3882},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":38,"sourceUrl":41,"mdContent":42},"create-call","create automated phone calls with Vapi","Create outbound phone calls, web calls, and batch calls using the Vapi API. Use when making automated calls, testing voice assistants, scheduling call campaigns, or initiating conversations programmatically.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"vapi","Vapi","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvapi.png","VapiAI",[13,17,20,23],{"name":14,"slug":15,"type":16},"Automation","automation","tag",{"name":18,"slug":19,"type":16},"Agents","agents",{"name":21,"slug":22,"type":16},"Voice","voice",{"name":24,"slug":25,"type":16},"Speech","speech",53,"https:\u002F\u002Fgithub.com\u002FVapiAI\u002Fskills","2026-07-20T05:57:32.68652","MIT",7,[32,33,34,35,36,8,37],"agent-skills","claude-code","codex-skills","openclaw-skills","skills","vapi-ai",{"repoUrl":27,"stars":26,"forks":30,"topics":39,"description":40},[32,33,34,35,36,8,37],"A set of skills and MCP connector to allow agents to build Vapi AI agents, from creating tools and assistants to a phone call","https:\u002F\u002Fgithub.com\u002FVapiAI\u002Fskills\u002Ftree\u002FHEAD\u002Fcreate-call","---\nname: create-call\ndescription: Create outbound phone calls, web calls, and batch calls using the Vapi API. Use when making automated calls, testing voice assistants, scheduling call campaigns, or initiating conversations programmatically.\nlicense: MIT\ncompatibility: Requires internet access and a Vapi API key (VAPI_API_KEY).\nmetadata:\n  author: vapi\n  version: \"1.0\"\n---\n\n# Vapi Call Creation\n\nInitiate outbound phone calls, web calls, and batch calls using Vapi's API. Connect your voice assistants to real phone numbers and test them programmatically.\n\n> **Setup:** Ensure `VAPI_API_KEY` is set. See the `setup-api-key` skill if needed.\n\n## Quick Start — Outbound Phone Call\n\n### cURL\n\n```bash\ncurl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fcall \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"assistantId\": \"your-assistant-id\",\n    \"phoneNumberId\": \"your-phone-number-id\",\n    \"customer\": {\n      \"number\": \"+11234567890\"\n    }\n  }'\n```\n\n### TypeScript (Server SDK)\n\n```typescript\nimport { VapiClient } from \"@vapi-ai\u002Fserver-sdk\";\n\nconst vapi = new VapiClient({ token: process.env.VAPI_API_KEY! });\n\nconst call = await vapi.calls.create({\n  assistantId: \"your-assistant-id\",\n  phoneNumberId: \"your-phone-number-id\",\n  customer: {\n    number: \"+11234567890\",\n  },\n});\n\nconsole.log(\"Call created:\", call.id);\n```\n\n### Python\n\n```python\nimport requests\nimport os\n\nresponse = requests.post(\n    \"https:\u002F\u002Fapi.vapi.ai\u002Fcall\",\n    headers={\n        \"Authorization\": f\"Bearer {os.environ['VAPI_API_KEY']}\",\n        \"Content-Type\": \"application\u002Fjson\",\n    },\n    json={\n        \"assistantId\": \"your-assistant-id\",\n        \"phoneNumberId\": \"your-phone-number-id\",\n        \"customer\": {\"number\": \"+11234567890\"},\n    },\n)\n\ncall = response.json()\nprint(f\"Call initiated: {call['id']}\")\n```\n\n## Call Types\n\n### Outbound Phone Call\n\nRequires an assistant, a Vapi phone number, and a customer number.\n\n```json\n{\n  \"assistantId\": \"assistant-id\",\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customer\": {\n    \"number\": \"+11234567890\",\n    \"name\": \"John Doe\",\n    \"numberE164CheckEnabled\": true\n  }\n}\n```\n\n### Web Call\n\nFor browser-based calls — no phone number needed. Use the Vapi Web SDK on the client side.\n\n```json\n{\n  \"assistantId\": \"assistant-id\"\n}\n```\n\nClient-side (JavaScript):\n```javascript\nimport Vapi from \"@vapi-ai\u002Fweb\";\n\nconst vapi = new Vapi(\"your-public-key\");\nvapi.start(\"your-assistant-id\");\n```\n\n### Transient Assistant Call\n\nDefine an assistant inline instead of referencing a saved one:\n\n```json\n{\n  \"assistant\": {\n    \"name\": \"Quick Test\",\n    \"firstMessage\": \"Hello! This is a test call.\",\n    \"model\": {\n      \"provider\": \"openai\",\n      \"model\": \"gpt-4.1\",\n      \"messages\": [\n        {\n          \"role\": \"system\",\n          \"content\": \"You are a test assistant. Confirm the call is working and end politely.\"\n        }\n      ]\n    },\n    \"voice\": { \"provider\": \"vapi\", \"voiceId\": \"Elliot\", \"version\": 2 },\n    \"transcriber\": { \"provider\": \"deepgram\", \"model\": \"nova-3\", \"language\": \"en\" }\n  },\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customer\": {\n    \"number\": \"+11234567890\"\n  }\n}\n```\n\n## Scheduled Calls\n\nSchedule a call for a future time:\n\n```json\n{\n  \"assistantId\": \"assistant-id\",\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customer\": {\n    \"number\": \"+11234567890\"\n  },\n  \"schedulePlan\": {\n    \"earliestAt\": \"2025-06-15T14:00:00Z\",\n    \"latestAt\": \"2025-06-15T15:00:00Z\"\n  }\n}\n```\n\n- `earliestAt` — Earliest time to attempt the call (ISO 8601)\n- `latestAt` — Latest time to attempt the call (optional)\n- If using `assistantId`, the latest version of the assistant is used at call time\n- For a fixed assistant config, use `assistant` (transient) instead\n\n## Batch Calls\n\nCall multiple numbers in one request:\n\n```json\n{\n  \"assistantId\": \"assistant-id\",\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customers\": [\n    { \"number\": \"+11234567890\", \"name\": \"Alice\" },\n    { \"number\": \"+10987654321\", \"name\": \"Bob\" },\n    { \"number\": \"+15551234567\", \"name\": \"Carol\" }\n  ]\n}\n```\n\nCombine with `schedulePlan` for scheduled batch calls.\n\n## Call with Metadata\n\nPass custom data accessible during the call:\n\n```json\n{\n  \"assistantId\": \"assistant-id\",\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customer\": {\n    \"number\": \"+11234567890\"\n  },\n  \"metadata\": {\n    \"orderId\": \"ORD-12345\",\n    \"department\": \"billing\"\n  }\n}\n```\n\n## Managing Calls\n\n```bash\n# List calls\ncurl \"https:\u002F\u002Fapi.vapi.ai\u002Fcall?limit=10\" \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n\n# Get a specific call\ncurl https:\u002F\u002Fapi.vapi.ai\u002Fcall\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n\n# Get call with transcript and recording\ncurl https:\u002F\u002Fapi.vapi.ai\u002Fcall\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n# Response includes: artifact.transcript, artifact.recordingUrl,\n# analysis.summary, and costBreakdown when those outputs are enabled\n\n# Delete a call\ncurl -X DELETE https:\u002F\u002Fapi.vapi.ai\u002Fcall\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n```\n\n## Call Response\n\nA successful call creation returns:\n\n```json\n{\n  \"id\": \"call-uuid\",\n  \"orgId\": \"org-uuid\",\n  \"type\": \"outboundPhoneCall\",\n  \"status\": \"queued\",\n  \"assistantId\": \"assistant-id\",\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customer\": {\n    \"number\": \"+11234567890\"\n  },\n  \"createdAt\": \"2025-01-15T10:00:00Z\"\n}\n```\n\nCall statuses: `queued` → `ringing` → `in-progress` → `ended`\n\n## Compliance Warning\n\nIt is a violation of FCC law to dial phone numbers without consent in an automated manner. Review TCPA consent requirements before launching automated call campaigns.\n\n## References\n\n- [Vapi Outbound Calls Docs](https:\u002F\u002Fdocs.vapi.ai\u002Fcalls\u002Foutbound-calling)\n- [Call Features](https:\u002F\u002Fdocs.vapi.ai\u002Fcalls\u002Fcall-features)\n- [Voicemail Detection](https:\u002F\u002Fdocs.vapi.ai\u002Fcalls\u002Fvoicemail-detection)\n\n## Additional Resources\n\nVapi provides a **documentation MCP server** that gives compatible AI agents access to the Vapi knowledge base. Use its documentation search for advanced configuration, troubleshooting, SDK details, and anything beyond this skill.\n\n**Manual setup:** If your agent doesn't auto-detect the config, run:\n```bash\nclaude mcp add vapi-docs -- npx -y mcp-remote https:\u002F\u002Fdocs.vapi.ai\u002F_mcp\u002Fserver\n```\n\nSee the [Vapi MCP integration guide](https:\u002F\u002Fdocs.vapi.ai\u002Fcli\u002Fmcp) for setup instructions across supported agents.\n",{"data":44,"body":48},{"name":4,"description":6,"license":29,"compatibility":45,"metadata":46},"Requires internet access and a Vapi API key (VAPI_API_KEY).",{"author":8,"version":47},"1.0",{"type":49,"children":50},"root",[51,60,66,98,105,112,292,298,709,715,869,875,881,886,1116,1122,1127,1180,1185,1324,1330,1335,2027,2033,2038,2291,2340,2346,2351,2693,2705,2711,2716,2969,2975,3223,3229,3234,3567,3599,3605,3610,3616,3651,3657,3669,3679,3734,3748],{"type":52,"tag":53,"props":54,"children":56},"element","h1",{"id":55},"vapi-call-creation",[57],{"type":58,"value":59},"text","Vapi Call Creation",{"type":52,"tag":61,"props":62,"children":63},"p",{},[64],{"type":58,"value":65},"Initiate outbound phone calls, web calls, and batch calls using Vapi's API. Connect your voice assistants to real phone numbers and test them programmatically.",{"type":52,"tag":67,"props":68,"children":69},"blockquote",{},[70],{"type":52,"tag":61,"props":71,"children":72},{},[73,79,81,88,90,96],{"type":52,"tag":74,"props":75,"children":76},"strong",{},[77],{"type":58,"value":78},"Setup:",{"type":58,"value":80}," Ensure ",{"type":52,"tag":82,"props":83,"children":85},"code",{"className":84},[],[86],{"type":58,"value":87},"VAPI_API_KEY",{"type":58,"value":89}," is set. See the ",{"type":52,"tag":82,"props":91,"children":93},{"className":92},[],[94],{"type":58,"value":95},"setup-api-key",{"type":58,"value":97}," skill if needed.",{"type":52,"tag":99,"props":100,"children":102},"h2",{"id":101},"quick-start-outbound-phone-call",[103],{"type":58,"value":104},"Quick Start — Outbound Phone Call",{"type":52,"tag":106,"props":107,"children":109},"h3",{"id":108},"curl",[110],{"type":58,"value":111},"cURL",{"type":52,"tag":113,"props":114,"children":119},"pre",{"className":115,"code":116,"language":117,"meta":118,"style":118},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fcall \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"assistantId\": \"your-assistant-id\",\n    \"phoneNumberId\": \"your-phone-number-id\",\n    \"customer\": {\n      \"number\": \"+11234567890\"\n    }\n  }'\n","bash","",[120],{"type":52,"tag":82,"props":121,"children":122},{"__ignoreMap":118},[123,156,190,215,234,243,252,260,269,278],{"type":52,"tag":124,"props":125,"children":128},"span",{"class":126,"line":127},"line",1,[129,134,140,145,150],{"type":52,"tag":124,"props":130,"children":132},{"style":131},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[133],{"type":58,"value":108},{"type":52,"tag":124,"props":135,"children":137},{"style":136},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[138],{"type":58,"value":139}," -X",{"type":52,"tag":124,"props":141,"children":142},{"style":136},[143],{"type":58,"value":144}," POST",{"type":52,"tag":124,"props":146,"children":147},{"style":136},[148],{"type":58,"value":149}," https:\u002F\u002Fapi.vapi.ai\u002Fcall",{"type":52,"tag":124,"props":151,"children":153},{"style":152},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[154],{"type":58,"value":155}," \\\n",{"type":52,"tag":124,"props":157,"children":159},{"class":126,"line":158},2,[160,165,171,176,181,186],{"type":52,"tag":124,"props":161,"children":162},{"style":136},[163],{"type":58,"value":164},"  -H",{"type":52,"tag":124,"props":166,"children":168},{"style":167},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[169],{"type":58,"value":170}," \"",{"type":52,"tag":124,"props":172,"children":173},{"style":136},[174],{"type":58,"value":175},"Authorization: Bearer ",{"type":52,"tag":124,"props":177,"children":178},{"style":152},[179],{"type":58,"value":180},"$VAPI_API_KEY",{"type":52,"tag":124,"props":182,"children":183},{"style":167},[184],{"type":58,"value":185},"\"",{"type":52,"tag":124,"props":187,"children":188},{"style":152},[189],{"type":58,"value":155},{"type":52,"tag":124,"props":191,"children":193},{"class":126,"line":192},3,[194,198,202,207,211],{"type":52,"tag":124,"props":195,"children":196},{"style":136},[197],{"type":58,"value":164},{"type":52,"tag":124,"props":199,"children":200},{"style":167},[201],{"type":58,"value":170},{"type":52,"tag":124,"props":203,"children":204},{"style":136},[205],{"type":58,"value":206},"Content-Type: application\u002Fjson",{"type":52,"tag":124,"props":208,"children":209},{"style":167},[210],{"type":58,"value":185},{"type":52,"tag":124,"props":212,"children":213},{"style":152},[214],{"type":58,"value":155},{"type":52,"tag":124,"props":216,"children":218},{"class":126,"line":217},4,[219,224,229],{"type":52,"tag":124,"props":220,"children":221},{"style":136},[222],{"type":58,"value":223},"  -d",{"type":52,"tag":124,"props":225,"children":226},{"style":167},[227],{"type":58,"value":228}," '",{"type":52,"tag":124,"props":230,"children":231},{"style":136},[232],{"type":58,"value":233},"{\n",{"type":52,"tag":124,"props":235,"children":237},{"class":126,"line":236},5,[238],{"type":52,"tag":124,"props":239,"children":240},{"style":136},[241],{"type":58,"value":242},"    \"assistantId\": \"your-assistant-id\",\n",{"type":52,"tag":124,"props":244,"children":246},{"class":126,"line":245},6,[247],{"type":52,"tag":124,"props":248,"children":249},{"style":136},[250],{"type":58,"value":251},"    \"phoneNumberId\": \"your-phone-number-id\",\n",{"type":52,"tag":124,"props":253,"children":254},{"class":126,"line":30},[255],{"type":52,"tag":124,"props":256,"children":257},{"style":136},[258],{"type":58,"value":259},"    \"customer\": {\n",{"type":52,"tag":124,"props":261,"children":263},{"class":126,"line":262},8,[264],{"type":52,"tag":124,"props":265,"children":266},{"style":136},[267],{"type":58,"value":268},"      \"number\": \"+11234567890\"\n",{"type":52,"tag":124,"props":270,"children":272},{"class":126,"line":271},9,[273],{"type":52,"tag":124,"props":274,"children":275},{"style":136},[276],{"type":58,"value":277},"    }\n",{"type":52,"tag":124,"props":279,"children":281},{"class":126,"line":280},10,[282,287],{"type":52,"tag":124,"props":283,"children":284},{"style":136},[285],{"type":58,"value":286},"  }",{"type":52,"tag":124,"props":288,"children":289},{"style":167},[290],{"type":58,"value":291},"'\n",{"type":52,"tag":106,"props":293,"children":295},{"id":294},"typescript-server-sdk",[296],{"type":58,"value":297},"TypeScript (Server SDK)",{"type":52,"tag":113,"props":299,"children":303},{"className":300,"code":301,"language":302,"meta":118,"style":118},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { VapiClient } from \"@vapi-ai\u002Fserver-sdk\";\n\nconst vapi = new VapiClient({ token: process.env.VAPI_API_KEY! });\n\nconst call = await vapi.calls.create({\n  assistantId: \"your-assistant-id\",\n  phoneNumberId: \"your-phone-number-id\",\n  customer: {\n    number: \"+11234567890\",\n  },\n});\n\nconsole.log(\"Call created:\", call.id);\n","typescript",[304],{"type":52,"tag":82,"props":305,"children":306},{"__ignoreMap":118},[307,354,363,454,461,513,543,572,589,618,626,643,651],{"type":52,"tag":124,"props":308,"children":309},{"class":126,"line":127},[310,316,321,326,331,336,340,345,349],{"type":52,"tag":124,"props":311,"children":313},{"style":312},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[314],{"type":58,"value":315},"import",{"type":52,"tag":124,"props":317,"children":318},{"style":167},[319],{"type":58,"value":320}," {",{"type":52,"tag":124,"props":322,"children":323},{"style":152},[324],{"type":58,"value":325}," VapiClient",{"type":52,"tag":124,"props":327,"children":328},{"style":167},[329],{"type":58,"value":330}," }",{"type":52,"tag":124,"props":332,"children":333},{"style":312},[334],{"type":58,"value":335}," from",{"type":52,"tag":124,"props":337,"children":338},{"style":167},[339],{"type":58,"value":170},{"type":52,"tag":124,"props":341,"children":342},{"style":136},[343],{"type":58,"value":344},"@vapi-ai\u002Fserver-sdk",{"type":52,"tag":124,"props":346,"children":347},{"style":167},[348],{"type":58,"value":185},{"type":52,"tag":124,"props":350,"children":351},{"style":167},[352],{"type":58,"value":353},";\n",{"type":52,"tag":124,"props":355,"children":356},{"class":126,"line":158},[357],{"type":52,"tag":124,"props":358,"children":360},{"emptyLinePlaceholder":359},true,[361],{"type":58,"value":362},"\n",{"type":52,"tag":124,"props":364,"children":365},{"class":126,"line":192},[366,372,377,382,387,392,397,402,408,413,418,423,428,432,436,441,445,450],{"type":52,"tag":124,"props":367,"children":369},{"style":368},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[370],{"type":58,"value":371},"const",{"type":52,"tag":124,"props":373,"children":374},{"style":152},[375],{"type":58,"value":376}," vapi ",{"type":52,"tag":124,"props":378,"children":379},{"style":167},[380],{"type":58,"value":381},"=",{"type":52,"tag":124,"props":383,"children":384},{"style":167},[385],{"type":58,"value":386}," new",{"type":52,"tag":124,"props":388,"children":390},{"style":389},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[391],{"type":58,"value":325},{"type":52,"tag":124,"props":393,"children":394},{"style":152},[395],{"type":58,"value":396},"(",{"type":52,"tag":124,"props":398,"children":399},{"style":167},[400],{"type":58,"value":401},"{",{"type":52,"tag":124,"props":403,"children":405},{"style":404},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[406],{"type":58,"value":407}," token",{"type":52,"tag":124,"props":409,"children":410},{"style":167},[411],{"type":58,"value":412},":",{"type":52,"tag":124,"props":414,"children":415},{"style":152},[416],{"type":58,"value":417}," process",{"type":52,"tag":124,"props":419,"children":420},{"style":167},[421],{"type":58,"value":422},".",{"type":52,"tag":124,"props":424,"children":425},{"style":152},[426],{"type":58,"value":427},"env",{"type":52,"tag":124,"props":429,"children":430},{"style":167},[431],{"type":58,"value":422},{"type":52,"tag":124,"props":433,"children":434},{"style":152},[435],{"type":58,"value":87},{"type":52,"tag":124,"props":437,"children":438},{"style":167},[439],{"type":58,"value":440},"!",{"type":52,"tag":124,"props":442,"children":443},{"style":167},[444],{"type":58,"value":330},{"type":52,"tag":124,"props":446,"children":447},{"style":152},[448],{"type":58,"value":449},")",{"type":52,"tag":124,"props":451,"children":452},{"style":167},[453],{"type":58,"value":353},{"type":52,"tag":124,"props":455,"children":456},{"class":126,"line":217},[457],{"type":52,"tag":124,"props":458,"children":459},{"emptyLinePlaceholder":359},[460],{"type":58,"value":362},{"type":52,"tag":124,"props":462,"children":463},{"class":126,"line":236},[464,468,473,477,482,487,491,496,500,505,509],{"type":52,"tag":124,"props":465,"children":466},{"style":368},[467],{"type":58,"value":371},{"type":52,"tag":124,"props":469,"children":470},{"style":152},[471],{"type":58,"value":472}," call ",{"type":52,"tag":124,"props":474,"children":475},{"style":167},[476],{"type":58,"value":381},{"type":52,"tag":124,"props":478,"children":479},{"style":312},[480],{"type":58,"value":481}," await",{"type":52,"tag":124,"props":483,"children":484},{"style":152},[485],{"type":58,"value":486}," vapi",{"type":52,"tag":124,"props":488,"children":489},{"style":167},[490],{"type":58,"value":422},{"type":52,"tag":124,"props":492,"children":493},{"style":152},[494],{"type":58,"value":495},"calls",{"type":52,"tag":124,"props":497,"children":498},{"style":167},[499],{"type":58,"value":422},{"type":52,"tag":124,"props":501,"children":502},{"style":389},[503],{"type":58,"value":504},"create",{"type":52,"tag":124,"props":506,"children":507},{"style":152},[508],{"type":58,"value":396},{"type":52,"tag":124,"props":510,"children":511},{"style":167},[512],{"type":58,"value":233},{"type":52,"tag":124,"props":514,"children":515},{"class":126,"line":245},[516,521,525,529,534,538],{"type":52,"tag":124,"props":517,"children":518},{"style":404},[519],{"type":58,"value":520},"  assistantId",{"type":52,"tag":124,"props":522,"children":523},{"style":167},[524],{"type":58,"value":412},{"type":52,"tag":124,"props":526,"children":527},{"style":167},[528],{"type":58,"value":170},{"type":52,"tag":124,"props":530,"children":531},{"style":136},[532],{"type":58,"value":533},"your-assistant-id",{"type":52,"tag":124,"props":535,"children":536},{"style":167},[537],{"type":58,"value":185},{"type":52,"tag":124,"props":539,"children":540},{"style":167},[541],{"type":58,"value":542},",\n",{"type":52,"tag":124,"props":544,"children":545},{"class":126,"line":30},[546,551,555,559,564,568],{"type":52,"tag":124,"props":547,"children":548},{"style":404},[549],{"type":58,"value":550},"  phoneNumberId",{"type":52,"tag":124,"props":552,"children":553},{"style":167},[554],{"type":58,"value":412},{"type":52,"tag":124,"props":556,"children":557},{"style":167},[558],{"type":58,"value":170},{"type":52,"tag":124,"props":560,"children":561},{"style":136},[562],{"type":58,"value":563},"your-phone-number-id",{"type":52,"tag":124,"props":565,"children":566},{"style":167},[567],{"type":58,"value":185},{"type":52,"tag":124,"props":569,"children":570},{"style":167},[571],{"type":58,"value":542},{"type":52,"tag":124,"props":573,"children":574},{"class":126,"line":262},[575,580,584],{"type":52,"tag":124,"props":576,"children":577},{"style":404},[578],{"type":58,"value":579},"  customer",{"type":52,"tag":124,"props":581,"children":582},{"style":167},[583],{"type":58,"value":412},{"type":52,"tag":124,"props":585,"children":586},{"style":167},[587],{"type":58,"value":588}," {\n",{"type":52,"tag":124,"props":590,"children":591},{"class":126,"line":271},[592,597,601,605,610,614],{"type":52,"tag":124,"props":593,"children":594},{"style":404},[595],{"type":58,"value":596},"    number",{"type":52,"tag":124,"props":598,"children":599},{"style":167},[600],{"type":58,"value":412},{"type":52,"tag":124,"props":602,"children":603},{"style":167},[604],{"type":58,"value":170},{"type":52,"tag":124,"props":606,"children":607},{"style":136},[608],{"type":58,"value":609},"+11234567890",{"type":52,"tag":124,"props":611,"children":612},{"style":167},[613],{"type":58,"value":185},{"type":52,"tag":124,"props":615,"children":616},{"style":167},[617],{"type":58,"value":542},{"type":52,"tag":124,"props":619,"children":620},{"class":126,"line":280},[621],{"type":52,"tag":124,"props":622,"children":623},{"style":167},[624],{"type":58,"value":625},"  },\n",{"type":52,"tag":124,"props":627,"children":629},{"class":126,"line":628},11,[630,635,639],{"type":52,"tag":124,"props":631,"children":632},{"style":167},[633],{"type":58,"value":634},"}",{"type":52,"tag":124,"props":636,"children":637},{"style":152},[638],{"type":58,"value":449},{"type":52,"tag":124,"props":640,"children":641},{"style":167},[642],{"type":58,"value":353},{"type":52,"tag":124,"props":644,"children":646},{"class":126,"line":645},12,[647],{"type":52,"tag":124,"props":648,"children":649},{"emptyLinePlaceholder":359},[650],{"type":58,"value":362},{"type":52,"tag":124,"props":652,"children":654},{"class":126,"line":653},13,[655,660,664,669,673,677,682,686,691,696,700,705],{"type":52,"tag":124,"props":656,"children":657},{"style":152},[658],{"type":58,"value":659},"console",{"type":52,"tag":124,"props":661,"children":662},{"style":167},[663],{"type":58,"value":422},{"type":52,"tag":124,"props":665,"children":666},{"style":389},[667],{"type":58,"value":668},"log",{"type":52,"tag":124,"props":670,"children":671},{"style":152},[672],{"type":58,"value":396},{"type":52,"tag":124,"props":674,"children":675},{"style":167},[676],{"type":58,"value":185},{"type":52,"tag":124,"props":678,"children":679},{"style":136},[680],{"type":58,"value":681},"Call created:",{"type":52,"tag":124,"props":683,"children":684},{"style":167},[685],{"type":58,"value":185},{"type":52,"tag":124,"props":687,"children":688},{"style":167},[689],{"type":58,"value":690},",",{"type":52,"tag":124,"props":692,"children":693},{"style":152},[694],{"type":58,"value":695}," call",{"type":52,"tag":124,"props":697,"children":698},{"style":167},[699],{"type":58,"value":422},{"type":52,"tag":124,"props":701,"children":702},{"style":152},[703],{"type":58,"value":704},"id)",{"type":52,"tag":124,"props":706,"children":707},{"style":167},[708],{"type":58,"value":353},{"type":52,"tag":106,"props":710,"children":712},{"id":711},"python",[713],{"type":58,"value":714},"Python",{"type":52,"tag":113,"props":716,"children":719},{"className":717,"code":718,"language":711,"meta":118,"style":118},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import requests\nimport os\n\nresponse = requests.post(\n    \"https:\u002F\u002Fapi.vapi.ai\u002Fcall\",\n    headers={\n        \"Authorization\": f\"Bearer {os.environ['VAPI_API_KEY']}\",\n        \"Content-Type\": \"application\u002Fjson\",\n    },\n    json={\n        \"assistantId\": \"your-assistant-id\",\n        \"phoneNumberId\": \"your-phone-number-id\",\n        \"customer\": {\"number\": \"+11234567890\"},\n    },\n)\n\ncall = response.json()\nprint(f\"Call initiated: {call['id']}\")\n",[720],{"type":52,"tag":82,"props":721,"children":722},{"__ignoreMap":118},[723,731,739,746,754,762,770,778,786,794,802,810,818,826,834,843,851,860],{"type":52,"tag":124,"props":724,"children":725},{"class":126,"line":127},[726],{"type":52,"tag":124,"props":727,"children":728},{},[729],{"type":58,"value":730},"import requests\n",{"type":52,"tag":124,"props":732,"children":733},{"class":126,"line":158},[734],{"type":52,"tag":124,"props":735,"children":736},{},[737],{"type":58,"value":738},"import os\n",{"type":52,"tag":124,"props":740,"children":741},{"class":126,"line":192},[742],{"type":52,"tag":124,"props":743,"children":744},{"emptyLinePlaceholder":359},[745],{"type":58,"value":362},{"type":52,"tag":124,"props":747,"children":748},{"class":126,"line":217},[749],{"type":52,"tag":124,"props":750,"children":751},{},[752],{"type":58,"value":753},"response = requests.post(\n",{"type":52,"tag":124,"props":755,"children":756},{"class":126,"line":236},[757],{"type":52,"tag":124,"props":758,"children":759},{},[760],{"type":58,"value":761},"    \"https:\u002F\u002Fapi.vapi.ai\u002Fcall\",\n",{"type":52,"tag":124,"props":763,"children":764},{"class":126,"line":245},[765],{"type":52,"tag":124,"props":766,"children":767},{},[768],{"type":58,"value":769},"    headers={\n",{"type":52,"tag":124,"props":771,"children":772},{"class":126,"line":30},[773],{"type":52,"tag":124,"props":774,"children":775},{},[776],{"type":58,"value":777},"        \"Authorization\": f\"Bearer {os.environ['VAPI_API_KEY']}\",\n",{"type":52,"tag":124,"props":779,"children":780},{"class":126,"line":262},[781],{"type":52,"tag":124,"props":782,"children":783},{},[784],{"type":58,"value":785},"        \"Content-Type\": \"application\u002Fjson\",\n",{"type":52,"tag":124,"props":787,"children":788},{"class":126,"line":271},[789],{"type":52,"tag":124,"props":790,"children":791},{},[792],{"type":58,"value":793},"    },\n",{"type":52,"tag":124,"props":795,"children":796},{"class":126,"line":280},[797],{"type":52,"tag":124,"props":798,"children":799},{},[800],{"type":58,"value":801},"    json={\n",{"type":52,"tag":124,"props":803,"children":804},{"class":126,"line":628},[805],{"type":52,"tag":124,"props":806,"children":807},{},[808],{"type":58,"value":809},"        \"assistantId\": \"your-assistant-id\",\n",{"type":52,"tag":124,"props":811,"children":812},{"class":126,"line":645},[813],{"type":52,"tag":124,"props":814,"children":815},{},[816],{"type":58,"value":817},"        \"phoneNumberId\": \"your-phone-number-id\",\n",{"type":52,"tag":124,"props":819,"children":820},{"class":126,"line":653},[821],{"type":52,"tag":124,"props":822,"children":823},{},[824],{"type":58,"value":825},"        \"customer\": {\"number\": \"+11234567890\"},\n",{"type":52,"tag":124,"props":827,"children":829},{"class":126,"line":828},14,[830],{"type":52,"tag":124,"props":831,"children":832},{},[833],{"type":58,"value":793},{"type":52,"tag":124,"props":835,"children":837},{"class":126,"line":836},15,[838],{"type":52,"tag":124,"props":839,"children":840},{},[841],{"type":58,"value":842},")\n",{"type":52,"tag":124,"props":844,"children":846},{"class":126,"line":845},16,[847],{"type":52,"tag":124,"props":848,"children":849},{"emptyLinePlaceholder":359},[850],{"type":58,"value":362},{"type":52,"tag":124,"props":852,"children":854},{"class":126,"line":853},17,[855],{"type":52,"tag":124,"props":856,"children":857},{},[858],{"type":58,"value":859},"call = response.json()\n",{"type":52,"tag":124,"props":861,"children":863},{"class":126,"line":862},18,[864],{"type":52,"tag":124,"props":865,"children":866},{},[867],{"type":58,"value":868},"print(f\"Call initiated: {call['id']}\")\n",{"type":52,"tag":99,"props":870,"children":872},{"id":871},"call-types",[873],{"type":58,"value":874},"Call Types",{"type":52,"tag":106,"props":876,"children":878},{"id":877},"outbound-phone-call",[879],{"type":58,"value":880},"Outbound Phone Call",{"type":52,"tag":61,"props":882,"children":883},{},[884],{"type":58,"value":885},"Requires an assistant, a Vapi phone number, and a customer number.",{"type":52,"tag":113,"props":887,"children":891},{"className":888,"code":889,"language":890,"meta":118,"style":118},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"assistantId\": \"assistant-id\",\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customer\": {\n    \"number\": \"+11234567890\",\n    \"name\": \"John Doe\",\n    \"numberE164CheckEnabled\": true\n  }\n}\n","json",[892],{"type":52,"tag":82,"props":893,"children":894},{"__ignoreMap":118},[895,902,940,977,1001,1038,1075,1100,1108],{"type":52,"tag":124,"props":896,"children":897},{"class":126,"line":127},[898],{"type":52,"tag":124,"props":899,"children":900},{"style":167},[901],{"type":58,"value":233},{"type":52,"tag":124,"props":903,"children":904},{"class":126,"line":158},[905,910,915,919,923,927,932,936],{"type":52,"tag":124,"props":906,"children":907},{"style":167},[908],{"type":58,"value":909},"  \"",{"type":52,"tag":124,"props":911,"children":912},{"style":368},[913],{"type":58,"value":914},"assistantId",{"type":52,"tag":124,"props":916,"children":917},{"style":167},[918],{"type":58,"value":185},{"type":52,"tag":124,"props":920,"children":921},{"style":167},[922],{"type":58,"value":412},{"type":52,"tag":124,"props":924,"children":925},{"style":167},[926],{"type":58,"value":170},{"type":52,"tag":124,"props":928,"children":929},{"style":136},[930],{"type":58,"value":931},"assistant-id",{"type":52,"tag":124,"props":933,"children":934},{"style":167},[935],{"type":58,"value":185},{"type":52,"tag":124,"props":937,"children":938},{"style":167},[939],{"type":58,"value":542},{"type":52,"tag":124,"props":941,"children":942},{"class":126,"line":192},[943,947,952,956,960,964,969,973],{"type":52,"tag":124,"props":944,"children":945},{"style":167},[946],{"type":58,"value":909},{"type":52,"tag":124,"props":948,"children":949},{"style":368},[950],{"type":58,"value":951},"phoneNumberId",{"type":52,"tag":124,"props":953,"children":954},{"style":167},[955],{"type":58,"value":185},{"type":52,"tag":124,"props":957,"children":958},{"style":167},[959],{"type":58,"value":412},{"type":52,"tag":124,"props":961,"children":962},{"style":167},[963],{"type":58,"value":170},{"type":52,"tag":124,"props":965,"children":966},{"style":136},[967],{"type":58,"value":968},"phone-number-id",{"type":52,"tag":124,"props":970,"children":971},{"style":167},[972],{"type":58,"value":185},{"type":52,"tag":124,"props":974,"children":975},{"style":167},[976],{"type":58,"value":542},{"type":52,"tag":124,"props":978,"children":979},{"class":126,"line":217},[980,984,989,993,997],{"type":52,"tag":124,"props":981,"children":982},{"style":167},[983],{"type":58,"value":909},{"type":52,"tag":124,"props":985,"children":986},{"style":368},[987],{"type":58,"value":988},"customer",{"type":52,"tag":124,"props":990,"children":991},{"style":167},[992],{"type":58,"value":185},{"type":52,"tag":124,"props":994,"children":995},{"style":167},[996],{"type":58,"value":412},{"type":52,"tag":124,"props":998,"children":999},{"style":167},[1000],{"type":58,"value":588},{"type":52,"tag":124,"props":1002,"children":1003},{"class":126,"line":236},[1004,1009,1014,1018,1022,1026,1030,1034],{"type":52,"tag":124,"props":1005,"children":1006},{"style":167},[1007],{"type":58,"value":1008},"    \"",{"type":52,"tag":124,"props":1010,"children":1011},{"style":131},[1012],{"type":58,"value":1013},"number",{"type":52,"tag":124,"props":1015,"children":1016},{"style":167},[1017],{"type":58,"value":185},{"type":52,"tag":124,"props":1019,"children":1020},{"style":167},[1021],{"type":58,"value":412},{"type":52,"tag":124,"props":1023,"children":1024},{"style":167},[1025],{"type":58,"value":170},{"type":52,"tag":124,"props":1027,"children":1028},{"style":136},[1029],{"type":58,"value":609},{"type":52,"tag":124,"props":1031,"children":1032},{"style":167},[1033],{"type":58,"value":185},{"type":52,"tag":124,"props":1035,"children":1036},{"style":167},[1037],{"type":58,"value":542},{"type":52,"tag":124,"props":1039,"children":1040},{"class":126,"line":245},[1041,1045,1050,1054,1058,1062,1067,1071],{"type":52,"tag":124,"props":1042,"children":1043},{"style":167},[1044],{"type":58,"value":1008},{"type":52,"tag":124,"props":1046,"children":1047},{"style":131},[1048],{"type":58,"value":1049},"name",{"type":52,"tag":124,"props":1051,"children":1052},{"style":167},[1053],{"type":58,"value":185},{"type":52,"tag":124,"props":1055,"children":1056},{"style":167},[1057],{"type":58,"value":412},{"type":52,"tag":124,"props":1059,"children":1060},{"style":167},[1061],{"type":58,"value":170},{"type":52,"tag":124,"props":1063,"children":1064},{"style":136},[1065],{"type":58,"value":1066},"John Doe",{"type":52,"tag":124,"props":1068,"children":1069},{"style":167},[1070],{"type":58,"value":185},{"type":52,"tag":124,"props":1072,"children":1073},{"style":167},[1074],{"type":58,"value":542},{"type":52,"tag":124,"props":1076,"children":1077},{"class":126,"line":30},[1078,1082,1087,1091,1095],{"type":52,"tag":124,"props":1079,"children":1080},{"style":167},[1081],{"type":58,"value":1008},{"type":52,"tag":124,"props":1083,"children":1084},{"style":131},[1085],{"type":58,"value":1086},"numberE164CheckEnabled",{"type":52,"tag":124,"props":1088,"children":1089},{"style":167},[1090],{"type":58,"value":185},{"type":52,"tag":124,"props":1092,"children":1093},{"style":167},[1094],{"type":58,"value":412},{"type":52,"tag":124,"props":1096,"children":1097},{"style":167},[1098],{"type":58,"value":1099}," true\n",{"type":52,"tag":124,"props":1101,"children":1102},{"class":126,"line":262},[1103],{"type":52,"tag":124,"props":1104,"children":1105},{"style":167},[1106],{"type":58,"value":1107},"  }\n",{"type":52,"tag":124,"props":1109,"children":1110},{"class":126,"line":271},[1111],{"type":52,"tag":124,"props":1112,"children":1113},{"style":167},[1114],{"type":58,"value":1115},"}\n",{"type":52,"tag":106,"props":1117,"children":1119},{"id":1118},"web-call",[1120],{"type":58,"value":1121},"Web Call",{"type":52,"tag":61,"props":1123,"children":1124},{},[1125],{"type":58,"value":1126},"For browser-based calls — no phone number needed. Use the Vapi Web SDK on the client side.",{"type":52,"tag":113,"props":1128,"children":1130},{"className":888,"code":1129,"language":890,"meta":118,"style":118},"{\n  \"assistantId\": \"assistant-id\"\n}\n",[1131],{"type":52,"tag":82,"props":1132,"children":1133},{"__ignoreMap":118},[1134,1141,1173],{"type":52,"tag":124,"props":1135,"children":1136},{"class":126,"line":127},[1137],{"type":52,"tag":124,"props":1138,"children":1139},{"style":167},[1140],{"type":58,"value":233},{"type":52,"tag":124,"props":1142,"children":1143},{"class":126,"line":158},[1144,1148,1152,1156,1160,1164,1168],{"type":52,"tag":124,"props":1145,"children":1146},{"style":167},[1147],{"type":58,"value":909},{"type":52,"tag":124,"props":1149,"children":1150},{"style":368},[1151],{"type":58,"value":914},{"type":52,"tag":124,"props":1153,"children":1154},{"style":167},[1155],{"type":58,"value":185},{"type":52,"tag":124,"props":1157,"children":1158},{"style":167},[1159],{"type":58,"value":412},{"type":52,"tag":124,"props":1161,"children":1162},{"style":167},[1163],{"type":58,"value":170},{"type":52,"tag":124,"props":1165,"children":1166},{"style":136},[1167],{"type":58,"value":931},{"type":52,"tag":124,"props":1169,"children":1170},{"style":167},[1171],{"type":58,"value":1172},"\"\n",{"type":52,"tag":124,"props":1174,"children":1175},{"class":126,"line":192},[1176],{"type":52,"tag":124,"props":1177,"children":1178},{"style":167},[1179],{"type":58,"value":1115},{"type":52,"tag":61,"props":1181,"children":1182},{},[1183],{"type":58,"value":1184},"Client-side (JavaScript):",{"type":52,"tag":113,"props":1186,"children":1190},{"className":1187,"code":1188,"language":1189,"meta":118,"style":118},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import Vapi from \"@vapi-ai\u002Fweb\";\n\nconst vapi = new Vapi(\"your-public-key\");\nvapi.start(\"your-assistant-id\");\n","javascript",[1191],{"type":52,"tag":82,"props":1192,"children":1193},{"__ignoreMap":118},[1194,1228,1235,1284],{"type":52,"tag":124,"props":1195,"children":1196},{"class":126,"line":127},[1197,1201,1206,1211,1215,1220,1224],{"type":52,"tag":124,"props":1198,"children":1199},{"style":312},[1200],{"type":58,"value":315},{"type":52,"tag":124,"props":1202,"children":1203},{"style":152},[1204],{"type":58,"value":1205}," Vapi ",{"type":52,"tag":124,"props":1207,"children":1208},{"style":312},[1209],{"type":58,"value":1210},"from",{"type":52,"tag":124,"props":1212,"children":1213},{"style":167},[1214],{"type":58,"value":170},{"type":52,"tag":124,"props":1216,"children":1217},{"style":136},[1218],{"type":58,"value":1219},"@vapi-ai\u002Fweb",{"type":52,"tag":124,"props":1221,"children":1222},{"style":167},[1223],{"type":58,"value":185},{"type":52,"tag":124,"props":1225,"children":1226},{"style":167},[1227],{"type":58,"value":353},{"type":52,"tag":124,"props":1229,"children":1230},{"class":126,"line":158},[1231],{"type":52,"tag":124,"props":1232,"children":1233},{"emptyLinePlaceholder":359},[1234],{"type":58,"value":362},{"type":52,"tag":124,"props":1236,"children":1237},{"class":126,"line":192},[1238,1242,1246,1250,1254,1259,1263,1267,1272,1276,1280],{"type":52,"tag":124,"props":1239,"children":1240},{"style":368},[1241],{"type":58,"value":371},{"type":52,"tag":124,"props":1243,"children":1244},{"style":152},[1245],{"type":58,"value":376},{"type":52,"tag":124,"props":1247,"children":1248},{"style":167},[1249],{"type":58,"value":381},{"type":52,"tag":124,"props":1251,"children":1252},{"style":167},[1253],{"type":58,"value":386},{"type":52,"tag":124,"props":1255,"children":1256},{"style":389},[1257],{"type":58,"value":1258}," Vapi",{"type":52,"tag":124,"props":1260,"children":1261},{"style":152},[1262],{"type":58,"value":396},{"type":52,"tag":124,"props":1264,"children":1265},{"style":167},[1266],{"type":58,"value":185},{"type":52,"tag":124,"props":1268,"children":1269},{"style":136},[1270],{"type":58,"value":1271},"your-public-key",{"type":52,"tag":124,"props":1273,"children":1274},{"style":167},[1275],{"type":58,"value":185},{"type":52,"tag":124,"props":1277,"children":1278},{"style":152},[1279],{"type":58,"value":449},{"type":52,"tag":124,"props":1281,"children":1282},{"style":167},[1283],{"type":58,"value":353},{"type":52,"tag":124,"props":1285,"children":1286},{"class":126,"line":217},[1287,1291,1295,1300,1304,1308,1312,1316,1320],{"type":52,"tag":124,"props":1288,"children":1289},{"style":152},[1290],{"type":58,"value":8},{"type":52,"tag":124,"props":1292,"children":1293},{"style":167},[1294],{"type":58,"value":422},{"type":52,"tag":124,"props":1296,"children":1297},{"style":389},[1298],{"type":58,"value":1299},"start",{"type":52,"tag":124,"props":1301,"children":1302},{"style":152},[1303],{"type":58,"value":396},{"type":52,"tag":124,"props":1305,"children":1306},{"style":167},[1307],{"type":58,"value":185},{"type":52,"tag":124,"props":1309,"children":1310},{"style":136},[1311],{"type":58,"value":533},{"type":52,"tag":124,"props":1313,"children":1314},{"style":167},[1315],{"type":58,"value":185},{"type":52,"tag":124,"props":1317,"children":1318},{"style":152},[1319],{"type":58,"value":449},{"type":52,"tag":124,"props":1321,"children":1322},{"style":167},[1323],{"type":58,"value":353},{"type":52,"tag":106,"props":1325,"children":1327},{"id":1326},"transient-assistant-call",[1328],{"type":58,"value":1329},"Transient Assistant Call",{"type":52,"tag":61,"props":1331,"children":1332},{},[1333],{"type":58,"value":1334},"Define an assistant inline instead of referencing a saved one:",{"type":52,"tag":113,"props":1336,"children":1338},{"className":888,"code":1337,"language":890,"meta":118,"style":118},"{\n  \"assistant\": {\n    \"name\": \"Quick Test\",\n    \"firstMessage\": \"Hello! This is a test call.\",\n    \"model\": {\n      \"provider\": \"openai\",\n      \"model\": \"gpt-4.1\",\n      \"messages\": [\n        {\n          \"role\": \"system\",\n          \"content\": \"You are a test assistant. Confirm the call is working and end politely.\"\n        }\n      ]\n    },\n    \"voice\": { \"provider\": \"vapi\", \"voiceId\": \"Elliot\", \"version\": 2 },\n    \"transcriber\": { \"provider\": \"deepgram\", \"model\": \"nova-3\", \"language\": \"en\" }\n  },\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customer\": {\n    \"number\": \"+11234567890\"\n  }\n}\n",[1339],{"type":52,"tag":82,"props":1340,"children":1341},{"__ignoreMap":118},[1342,1349,1373,1409,1446,1470,1509,1545,1570,1578,1616,1649,1657,1665,1672,1788,1913,1920,1955,1979,2011,2019],{"type":52,"tag":124,"props":1343,"children":1344},{"class":126,"line":127},[1345],{"type":52,"tag":124,"props":1346,"children":1347},{"style":167},[1348],{"type":58,"value":233},{"type":52,"tag":124,"props":1350,"children":1351},{"class":126,"line":158},[1352,1356,1361,1365,1369],{"type":52,"tag":124,"props":1353,"children":1354},{"style":167},[1355],{"type":58,"value":909},{"type":52,"tag":124,"props":1357,"children":1358},{"style":368},[1359],{"type":58,"value":1360},"assistant",{"type":52,"tag":124,"props":1362,"children":1363},{"style":167},[1364],{"type":58,"value":185},{"type":52,"tag":124,"props":1366,"children":1367},{"style":167},[1368],{"type":58,"value":412},{"type":52,"tag":124,"props":1370,"children":1371},{"style":167},[1372],{"type":58,"value":588},{"type":52,"tag":124,"props":1374,"children":1375},{"class":126,"line":192},[1376,1380,1384,1388,1392,1396,1401,1405],{"type":52,"tag":124,"props":1377,"children":1378},{"style":167},[1379],{"type":58,"value":1008},{"type":52,"tag":124,"props":1381,"children":1382},{"style":131},[1383],{"type":58,"value":1049},{"type":52,"tag":124,"props":1385,"children":1386},{"style":167},[1387],{"type":58,"value":185},{"type":52,"tag":124,"props":1389,"children":1390},{"style":167},[1391],{"type":58,"value":412},{"type":52,"tag":124,"props":1393,"children":1394},{"style":167},[1395],{"type":58,"value":170},{"type":52,"tag":124,"props":1397,"children":1398},{"style":136},[1399],{"type":58,"value":1400},"Quick Test",{"type":52,"tag":124,"props":1402,"children":1403},{"style":167},[1404],{"type":58,"value":185},{"type":52,"tag":124,"props":1406,"children":1407},{"style":167},[1408],{"type":58,"value":542},{"type":52,"tag":124,"props":1410,"children":1411},{"class":126,"line":217},[1412,1416,1421,1425,1429,1433,1438,1442],{"type":52,"tag":124,"props":1413,"children":1414},{"style":167},[1415],{"type":58,"value":1008},{"type":52,"tag":124,"props":1417,"children":1418},{"style":131},[1419],{"type":58,"value":1420},"firstMessage",{"type":52,"tag":124,"props":1422,"children":1423},{"style":167},[1424],{"type":58,"value":185},{"type":52,"tag":124,"props":1426,"children":1427},{"style":167},[1428],{"type":58,"value":412},{"type":52,"tag":124,"props":1430,"children":1431},{"style":167},[1432],{"type":58,"value":170},{"type":52,"tag":124,"props":1434,"children":1435},{"style":136},[1436],{"type":58,"value":1437},"Hello! This is a test call.",{"type":52,"tag":124,"props":1439,"children":1440},{"style":167},[1441],{"type":58,"value":185},{"type":52,"tag":124,"props":1443,"children":1444},{"style":167},[1445],{"type":58,"value":542},{"type":52,"tag":124,"props":1447,"children":1448},{"class":126,"line":236},[1449,1453,1458,1462,1466],{"type":52,"tag":124,"props":1450,"children":1451},{"style":167},[1452],{"type":58,"value":1008},{"type":52,"tag":124,"props":1454,"children":1455},{"style":131},[1456],{"type":58,"value":1457},"model",{"type":52,"tag":124,"props":1459,"children":1460},{"style":167},[1461],{"type":58,"value":185},{"type":52,"tag":124,"props":1463,"children":1464},{"style":167},[1465],{"type":58,"value":412},{"type":52,"tag":124,"props":1467,"children":1468},{"style":167},[1469],{"type":58,"value":588},{"type":52,"tag":124,"props":1471,"children":1472},{"class":126,"line":245},[1473,1478,1484,1488,1492,1496,1501,1505],{"type":52,"tag":124,"props":1474,"children":1475},{"style":167},[1476],{"type":58,"value":1477},"      \"",{"type":52,"tag":124,"props":1479,"children":1481},{"style":1480},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1482],{"type":58,"value":1483},"provider",{"type":52,"tag":124,"props":1485,"children":1486},{"style":167},[1487],{"type":58,"value":185},{"type":52,"tag":124,"props":1489,"children":1490},{"style":167},[1491],{"type":58,"value":412},{"type":52,"tag":124,"props":1493,"children":1494},{"style":167},[1495],{"type":58,"value":170},{"type":52,"tag":124,"props":1497,"children":1498},{"style":136},[1499],{"type":58,"value":1500},"openai",{"type":52,"tag":124,"props":1502,"children":1503},{"style":167},[1504],{"type":58,"value":185},{"type":52,"tag":124,"props":1506,"children":1507},{"style":167},[1508],{"type":58,"value":542},{"type":52,"tag":124,"props":1510,"children":1511},{"class":126,"line":30},[1512,1516,1520,1524,1528,1532,1537,1541],{"type":52,"tag":124,"props":1513,"children":1514},{"style":167},[1515],{"type":58,"value":1477},{"type":52,"tag":124,"props":1517,"children":1518},{"style":1480},[1519],{"type":58,"value":1457},{"type":52,"tag":124,"props":1521,"children":1522},{"style":167},[1523],{"type":58,"value":185},{"type":52,"tag":124,"props":1525,"children":1526},{"style":167},[1527],{"type":58,"value":412},{"type":52,"tag":124,"props":1529,"children":1530},{"style":167},[1531],{"type":58,"value":170},{"type":52,"tag":124,"props":1533,"children":1534},{"style":136},[1535],{"type":58,"value":1536},"gpt-4.1",{"type":52,"tag":124,"props":1538,"children":1539},{"style":167},[1540],{"type":58,"value":185},{"type":52,"tag":124,"props":1542,"children":1543},{"style":167},[1544],{"type":58,"value":542},{"type":52,"tag":124,"props":1546,"children":1547},{"class":126,"line":262},[1548,1552,1557,1561,1565],{"type":52,"tag":124,"props":1549,"children":1550},{"style":167},[1551],{"type":58,"value":1477},{"type":52,"tag":124,"props":1553,"children":1554},{"style":1480},[1555],{"type":58,"value":1556},"messages",{"type":52,"tag":124,"props":1558,"children":1559},{"style":167},[1560],{"type":58,"value":185},{"type":52,"tag":124,"props":1562,"children":1563},{"style":167},[1564],{"type":58,"value":412},{"type":52,"tag":124,"props":1566,"children":1567},{"style":167},[1568],{"type":58,"value":1569}," [\n",{"type":52,"tag":124,"props":1571,"children":1572},{"class":126,"line":271},[1573],{"type":52,"tag":124,"props":1574,"children":1575},{"style":167},[1576],{"type":58,"value":1577},"        {\n",{"type":52,"tag":124,"props":1579,"children":1580},{"class":126,"line":280},[1581,1586,1591,1595,1599,1603,1608,1612],{"type":52,"tag":124,"props":1582,"children":1583},{"style":167},[1584],{"type":58,"value":1585},"          \"",{"type":52,"tag":124,"props":1587,"children":1588},{"style":404},[1589],{"type":58,"value":1590},"role",{"type":52,"tag":124,"props":1592,"children":1593},{"style":167},[1594],{"type":58,"value":185},{"type":52,"tag":124,"props":1596,"children":1597},{"style":167},[1598],{"type":58,"value":412},{"type":52,"tag":124,"props":1600,"children":1601},{"style":167},[1602],{"type":58,"value":170},{"type":52,"tag":124,"props":1604,"children":1605},{"style":136},[1606],{"type":58,"value":1607},"system",{"type":52,"tag":124,"props":1609,"children":1610},{"style":167},[1611],{"type":58,"value":185},{"type":52,"tag":124,"props":1613,"children":1614},{"style":167},[1615],{"type":58,"value":542},{"type":52,"tag":124,"props":1617,"children":1618},{"class":126,"line":628},[1619,1623,1628,1632,1636,1640,1645],{"type":52,"tag":124,"props":1620,"children":1621},{"style":167},[1622],{"type":58,"value":1585},{"type":52,"tag":124,"props":1624,"children":1625},{"style":404},[1626],{"type":58,"value":1627},"content",{"type":52,"tag":124,"props":1629,"children":1630},{"style":167},[1631],{"type":58,"value":185},{"type":52,"tag":124,"props":1633,"children":1634},{"style":167},[1635],{"type":58,"value":412},{"type":52,"tag":124,"props":1637,"children":1638},{"style":167},[1639],{"type":58,"value":170},{"type":52,"tag":124,"props":1641,"children":1642},{"style":136},[1643],{"type":58,"value":1644},"You are a test assistant. Confirm the call is working and end politely.",{"type":52,"tag":124,"props":1646,"children":1647},{"style":167},[1648],{"type":58,"value":1172},{"type":52,"tag":124,"props":1650,"children":1651},{"class":126,"line":645},[1652],{"type":52,"tag":124,"props":1653,"children":1654},{"style":167},[1655],{"type":58,"value":1656},"        }\n",{"type":52,"tag":124,"props":1658,"children":1659},{"class":126,"line":653},[1660],{"type":52,"tag":124,"props":1661,"children":1662},{"style":167},[1663],{"type":58,"value":1664},"      ]\n",{"type":52,"tag":124,"props":1666,"children":1667},{"class":126,"line":828},[1668],{"type":52,"tag":124,"props":1669,"children":1670},{"style":167},[1671],{"type":58,"value":793},{"type":52,"tag":124,"props":1673,"children":1674},{"class":126,"line":836},[1675,1679,1683,1687,1691,1695,1699,1703,1707,1711,1715,1719,1723,1727,1731,1736,1740,1744,1748,1753,1757,1761,1765,1770,1774,1778,1783],{"type":52,"tag":124,"props":1676,"children":1677},{"style":167},[1678],{"type":58,"value":1008},{"type":52,"tag":124,"props":1680,"children":1681},{"style":131},[1682],{"type":58,"value":22},{"type":52,"tag":124,"props":1684,"children":1685},{"style":167},[1686],{"type":58,"value":185},{"type":52,"tag":124,"props":1688,"children":1689},{"style":167},[1690],{"type":58,"value":412},{"type":52,"tag":124,"props":1692,"children":1693},{"style":167},[1694],{"type":58,"value":320},{"type":52,"tag":124,"props":1696,"children":1697},{"style":167},[1698],{"type":58,"value":170},{"type":52,"tag":124,"props":1700,"children":1701},{"style":1480},[1702],{"type":58,"value":1483},{"type":52,"tag":124,"props":1704,"children":1705},{"style":167},[1706],{"type":58,"value":185},{"type":52,"tag":124,"props":1708,"children":1709},{"style":167},[1710],{"type":58,"value":412},{"type":52,"tag":124,"props":1712,"children":1713},{"style":167},[1714],{"type":58,"value":170},{"type":52,"tag":124,"props":1716,"children":1717},{"style":136},[1718],{"type":58,"value":8},{"type":52,"tag":124,"props":1720,"children":1721},{"style":167},[1722],{"type":58,"value":185},{"type":52,"tag":124,"props":1724,"children":1725},{"style":167},[1726],{"type":58,"value":690},{"type":52,"tag":124,"props":1728,"children":1729},{"style":167},[1730],{"type":58,"value":170},{"type":52,"tag":124,"props":1732,"children":1733},{"style":1480},[1734],{"type":58,"value":1735},"voiceId",{"type":52,"tag":124,"props":1737,"children":1738},{"style":167},[1739],{"type":58,"value":185},{"type":52,"tag":124,"props":1741,"children":1742},{"style":167},[1743],{"type":58,"value":412},{"type":52,"tag":124,"props":1745,"children":1746},{"style":167},[1747],{"type":58,"value":170},{"type":52,"tag":124,"props":1749,"children":1750},{"style":136},[1751],{"type":58,"value":1752},"Elliot",{"type":52,"tag":124,"props":1754,"children":1755},{"style":167},[1756],{"type":58,"value":185},{"type":52,"tag":124,"props":1758,"children":1759},{"style":167},[1760],{"type":58,"value":690},{"type":52,"tag":124,"props":1762,"children":1763},{"style":167},[1764],{"type":58,"value":170},{"type":52,"tag":124,"props":1766,"children":1767},{"style":1480},[1768],{"type":58,"value":1769},"version",{"type":52,"tag":124,"props":1771,"children":1772},{"style":167},[1773],{"type":58,"value":185},{"type":52,"tag":124,"props":1775,"children":1776},{"style":167},[1777],{"type":58,"value":412},{"type":52,"tag":124,"props":1779,"children":1780},{"style":1480},[1781],{"type":58,"value":1782}," 2",{"type":52,"tag":124,"props":1784,"children":1785},{"style":167},[1786],{"type":58,"value":1787}," },\n",{"type":52,"tag":124,"props":1789,"children":1790},{"class":126,"line":845},[1791,1795,1800,1804,1808,1812,1816,1820,1824,1828,1832,1837,1841,1845,1849,1853,1857,1861,1865,1870,1874,1878,1882,1887,1891,1895,1899,1904,1908],{"type":52,"tag":124,"props":1792,"children":1793},{"style":167},[1794],{"type":58,"value":1008},{"type":52,"tag":124,"props":1796,"children":1797},{"style":131},[1798],{"type":58,"value":1799},"transcriber",{"type":52,"tag":124,"props":1801,"children":1802},{"style":167},[1803],{"type":58,"value":185},{"type":52,"tag":124,"props":1805,"children":1806},{"style":167},[1807],{"type":58,"value":412},{"type":52,"tag":124,"props":1809,"children":1810},{"style":167},[1811],{"type":58,"value":320},{"type":52,"tag":124,"props":1813,"children":1814},{"style":167},[1815],{"type":58,"value":170},{"type":52,"tag":124,"props":1817,"children":1818},{"style":1480},[1819],{"type":58,"value":1483},{"type":52,"tag":124,"props":1821,"children":1822},{"style":167},[1823],{"type":58,"value":185},{"type":52,"tag":124,"props":1825,"children":1826},{"style":167},[1827],{"type":58,"value":412},{"type":52,"tag":124,"props":1829,"children":1830},{"style":167},[1831],{"type":58,"value":170},{"type":52,"tag":124,"props":1833,"children":1834},{"style":136},[1835],{"type":58,"value":1836},"deepgram",{"type":52,"tag":124,"props":1838,"children":1839},{"style":167},[1840],{"type":58,"value":185},{"type":52,"tag":124,"props":1842,"children":1843},{"style":167},[1844],{"type":58,"value":690},{"type":52,"tag":124,"props":1846,"children":1847},{"style":167},[1848],{"type":58,"value":170},{"type":52,"tag":124,"props":1850,"children":1851},{"style":1480},[1852],{"type":58,"value":1457},{"type":52,"tag":124,"props":1854,"children":1855},{"style":167},[1856],{"type":58,"value":185},{"type":52,"tag":124,"props":1858,"children":1859},{"style":167},[1860],{"type":58,"value":412},{"type":52,"tag":124,"props":1862,"children":1863},{"style":167},[1864],{"type":58,"value":170},{"type":52,"tag":124,"props":1866,"children":1867},{"style":136},[1868],{"type":58,"value":1869},"nova-3",{"type":52,"tag":124,"props":1871,"children":1872},{"style":167},[1873],{"type":58,"value":185},{"type":52,"tag":124,"props":1875,"children":1876},{"style":167},[1877],{"type":58,"value":690},{"type":52,"tag":124,"props":1879,"children":1880},{"style":167},[1881],{"type":58,"value":170},{"type":52,"tag":124,"props":1883,"children":1884},{"style":1480},[1885],{"type":58,"value":1886},"language",{"type":52,"tag":124,"props":1888,"children":1889},{"style":167},[1890],{"type":58,"value":185},{"type":52,"tag":124,"props":1892,"children":1893},{"style":167},[1894],{"type":58,"value":412},{"type":52,"tag":124,"props":1896,"children":1897},{"style":167},[1898],{"type":58,"value":170},{"type":52,"tag":124,"props":1900,"children":1901},{"style":136},[1902],{"type":58,"value":1903},"en",{"type":52,"tag":124,"props":1905,"children":1906},{"style":167},[1907],{"type":58,"value":185},{"type":52,"tag":124,"props":1909,"children":1910},{"style":167},[1911],{"type":58,"value":1912}," }\n",{"type":52,"tag":124,"props":1914,"children":1915},{"class":126,"line":853},[1916],{"type":52,"tag":124,"props":1917,"children":1918},{"style":167},[1919],{"type":58,"value":625},{"type":52,"tag":124,"props":1921,"children":1922},{"class":126,"line":862},[1923,1927,1931,1935,1939,1943,1947,1951],{"type":52,"tag":124,"props":1924,"children":1925},{"style":167},[1926],{"type":58,"value":909},{"type":52,"tag":124,"props":1928,"children":1929},{"style":368},[1930],{"type":58,"value":951},{"type":52,"tag":124,"props":1932,"children":1933},{"style":167},[1934],{"type":58,"value":185},{"type":52,"tag":124,"props":1936,"children":1937},{"style":167},[1938],{"type":58,"value":412},{"type":52,"tag":124,"props":1940,"children":1941},{"style":167},[1942],{"type":58,"value":170},{"type":52,"tag":124,"props":1944,"children":1945},{"style":136},[1946],{"type":58,"value":968},{"type":52,"tag":124,"props":1948,"children":1949},{"style":167},[1950],{"type":58,"value":185},{"type":52,"tag":124,"props":1952,"children":1953},{"style":167},[1954],{"type":58,"value":542},{"type":52,"tag":124,"props":1956,"children":1958},{"class":126,"line":1957},19,[1959,1963,1967,1971,1975],{"type":52,"tag":124,"props":1960,"children":1961},{"style":167},[1962],{"type":58,"value":909},{"type":52,"tag":124,"props":1964,"children":1965},{"style":368},[1966],{"type":58,"value":988},{"type":52,"tag":124,"props":1968,"children":1969},{"style":167},[1970],{"type":58,"value":185},{"type":52,"tag":124,"props":1972,"children":1973},{"style":167},[1974],{"type":58,"value":412},{"type":52,"tag":124,"props":1976,"children":1977},{"style":167},[1978],{"type":58,"value":588},{"type":52,"tag":124,"props":1980,"children":1982},{"class":126,"line":1981},20,[1983,1987,1991,1995,1999,2003,2007],{"type":52,"tag":124,"props":1984,"children":1985},{"style":167},[1986],{"type":58,"value":1008},{"type":52,"tag":124,"props":1988,"children":1989},{"style":131},[1990],{"type":58,"value":1013},{"type":52,"tag":124,"props":1992,"children":1993},{"style":167},[1994],{"type":58,"value":185},{"type":52,"tag":124,"props":1996,"children":1997},{"style":167},[1998],{"type":58,"value":412},{"type":52,"tag":124,"props":2000,"children":2001},{"style":167},[2002],{"type":58,"value":170},{"type":52,"tag":124,"props":2004,"children":2005},{"style":136},[2006],{"type":58,"value":609},{"type":52,"tag":124,"props":2008,"children":2009},{"style":167},[2010],{"type":58,"value":1172},{"type":52,"tag":124,"props":2012,"children":2014},{"class":126,"line":2013},21,[2015],{"type":52,"tag":124,"props":2016,"children":2017},{"style":167},[2018],{"type":58,"value":1107},{"type":52,"tag":124,"props":2020,"children":2022},{"class":126,"line":2021},22,[2023],{"type":52,"tag":124,"props":2024,"children":2025},{"style":167},[2026],{"type":58,"value":1115},{"type":52,"tag":99,"props":2028,"children":2030},{"id":2029},"scheduled-calls",[2031],{"type":58,"value":2032},"Scheduled Calls",{"type":52,"tag":61,"props":2034,"children":2035},{},[2036],{"type":58,"value":2037},"Schedule a call for a future time:",{"type":52,"tag":113,"props":2039,"children":2041},{"className":888,"code":2040,"language":890,"meta":118,"style":118},"{\n  \"assistantId\": \"assistant-id\",\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customer\": {\n    \"number\": \"+11234567890\"\n  },\n  \"schedulePlan\": {\n    \"earliestAt\": \"2025-06-15T14:00:00Z\",\n    \"latestAt\": \"2025-06-15T15:00:00Z\"\n  }\n}\n",[2042],{"type":52,"tag":82,"props":2043,"children":2044},{"__ignoreMap":118},[2045,2052,2087,2122,2145,2176,2183,2207,2244,2277,2284],{"type":52,"tag":124,"props":2046,"children":2047},{"class":126,"line":127},[2048],{"type":52,"tag":124,"props":2049,"children":2050},{"style":167},[2051],{"type":58,"value":233},{"type":52,"tag":124,"props":2053,"children":2054},{"class":126,"line":158},[2055,2059,2063,2067,2071,2075,2079,2083],{"type":52,"tag":124,"props":2056,"children":2057},{"style":167},[2058],{"type":58,"value":909},{"type":52,"tag":124,"props":2060,"children":2061},{"style":368},[2062],{"type":58,"value":914},{"type":52,"tag":124,"props":2064,"children":2065},{"style":167},[2066],{"type":58,"value":185},{"type":52,"tag":124,"props":2068,"children":2069},{"style":167},[2070],{"type":58,"value":412},{"type":52,"tag":124,"props":2072,"children":2073},{"style":167},[2074],{"type":58,"value":170},{"type":52,"tag":124,"props":2076,"children":2077},{"style":136},[2078],{"type":58,"value":931},{"type":52,"tag":124,"props":2080,"children":2081},{"style":167},[2082],{"type":58,"value":185},{"type":52,"tag":124,"props":2084,"children":2085},{"style":167},[2086],{"type":58,"value":542},{"type":52,"tag":124,"props":2088,"children":2089},{"class":126,"line":192},[2090,2094,2098,2102,2106,2110,2114,2118],{"type":52,"tag":124,"props":2091,"children":2092},{"style":167},[2093],{"type":58,"value":909},{"type":52,"tag":124,"props":2095,"children":2096},{"style":368},[2097],{"type":58,"value":951},{"type":52,"tag":124,"props":2099,"children":2100},{"style":167},[2101],{"type":58,"value":185},{"type":52,"tag":124,"props":2103,"children":2104},{"style":167},[2105],{"type":58,"value":412},{"type":52,"tag":124,"props":2107,"children":2108},{"style":167},[2109],{"type":58,"value":170},{"type":52,"tag":124,"props":2111,"children":2112},{"style":136},[2113],{"type":58,"value":968},{"type":52,"tag":124,"props":2115,"children":2116},{"style":167},[2117],{"type":58,"value":185},{"type":52,"tag":124,"props":2119,"children":2120},{"style":167},[2121],{"type":58,"value":542},{"type":52,"tag":124,"props":2123,"children":2124},{"class":126,"line":217},[2125,2129,2133,2137,2141],{"type":52,"tag":124,"props":2126,"children":2127},{"style":167},[2128],{"type":58,"value":909},{"type":52,"tag":124,"props":2130,"children":2131},{"style":368},[2132],{"type":58,"value":988},{"type":52,"tag":124,"props":2134,"children":2135},{"style":167},[2136],{"type":58,"value":185},{"type":52,"tag":124,"props":2138,"children":2139},{"style":167},[2140],{"type":58,"value":412},{"type":52,"tag":124,"props":2142,"children":2143},{"style":167},[2144],{"type":58,"value":588},{"type":52,"tag":124,"props":2146,"children":2147},{"class":126,"line":236},[2148,2152,2156,2160,2164,2168,2172],{"type":52,"tag":124,"props":2149,"children":2150},{"style":167},[2151],{"type":58,"value":1008},{"type":52,"tag":124,"props":2153,"children":2154},{"style":131},[2155],{"type":58,"value":1013},{"type":52,"tag":124,"props":2157,"children":2158},{"style":167},[2159],{"type":58,"value":185},{"type":52,"tag":124,"props":2161,"children":2162},{"style":167},[2163],{"type":58,"value":412},{"type":52,"tag":124,"props":2165,"children":2166},{"style":167},[2167],{"type":58,"value":170},{"type":52,"tag":124,"props":2169,"children":2170},{"style":136},[2171],{"type":58,"value":609},{"type":52,"tag":124,"props":2173,"children":2174},{"style":167},[2175],{"type":58,"value":1172},{"type":52,"tag":124,"props":2177,"children":2178},{"class":126,"line":245},[2179],{"type":52,"tag":124,"props":2180,"children":2181},{"style":167},[2182],{"type":58,"value":625},{"type":52,"tag":124,"props":2184,"children":2185},{"class":126,"line":30},[2186,2190,2195,2199,2203],{"type":52,"tag":124,"props":2187,"children":2188},{"style":167},[2189],{"type":58,"value":909},{"type":52,"tag":124,"props":2191,"children":2192},{"style":368},[2193],{"type":58,"value":2194},"schedulePlan",{"type":52,"tag":124,"props":2196,"children":2197},{"style":167},[2198],{"type":58,"value":185},{"type":52,"tag":124,"props":2200,"children":2201},{"style":167},[2202],{"type":58,"value":412},{"type":52,"tag":124,"props":2204,"children":2205},{"style":167},[2206],{"type":58,"value":588},{"type":52,"tag":124,"props":2208,"children":2209},{"class":126,"line":262},[2210,2214,2219,2223,2227,2231,2236,2240],{"type":52,"tag":124,"props":2211,"children":2212},{"style":167},[2213],{"type":58,"value":1008},{"type":52,"tag":124,"props":2215,"children":2216},{"style":131},[2217],{"type":58,"value":2218},"earliestAt",{"type":52,"tag":124,"props":2220,"children":2221},{"style":167},[2222],{"type":58,"value":185},{"type":52,"tag":124,"props":2224,"children":2225},{"style":167},[2226],{"type":58,"value":412},{"type":52,"tag":124,"props":2228,"children":2229},{"style":167},[2230],{"type":58,"value":170},{"type":52,"tag":124,"props":2232,"children":2233},{"style":136},[2234],{"type":58,"value":2235},"2025-06-15T14:00:00Z",{"type":52,"tag":124,"props":2237,"children":2238},{"style":167},[2239],{"type":58,"value":185},{"type":52,"tag":124,"props":2241,"children":2242},{"style":167},[2243],{"type":58,"value":542},{"type":52,"tag":124,"props":2245,"children":2246},{"class":126,"line":271},[2247,2251,2256,2260,2264,2268,2273],{"type":52,"tag":124,"props":2248,"children":2249},{"style":167},[2250],{"type":58,"value":1008},{"type":52,"tag":124,"props":2252,"children":2253},{"style":131},[2254],{"type":58,"value":2255},"latestAt",{"type":52,"tag":124,"props":2257,"children":2258},{"style":167},[2259],{"type":58,"value":185},{"type":52,"tag":124,"props":2261,"children":2262},{"style":167},[2263],{"type":58,"value":412},{"type":52,"tag":124,"props":2265,"children":2266},{"style":167},[2267],{"type":58,"value":170},{"type":52,"tag":124,"props":2269,"children":2270},{"style":136},[2271],{"type":58,"value":2272},"2025-06-15T15:00:00Z",{"type":52,"tag":124,"props":2274,"children":2275},{"style":167},[2276],{"type":58,"value":1172},{"type":52,"tag":124,"props":2278,"children":2279},{"class":126,"line":280},[2280],{"type":52,"tag":124,"props":2281,"children":2282},{"style":167},[2283],{"type":58,"value":1107},{"type":52,"tag":124,"props":2285,"children":2286},{"class":126,"line":628},[2287],{"type":52,"tag":124,"props":2288,"children":2289},{"style":167},[2290],{"type":58,"value":1115},{"type":52,"tag":2292,"props":2293,"children":2294},"ul",{},[2295,2306,2316,2328],{"type":52,"tag":2296,"props":2297,"children":2298},"li",{},[2299,2304],{"type":52,"tag":82,"props":2300,"children":2302},{"className":2301},[],[2303],{"type":58,"value":2218},{"type":58,"value":2305}," — Earliest time to attempt the call (ISO 8601)",{"type":52,"tag":2296,"props":2307,"children":2308},{},[2309,2314],{"type":52,"tag":82,"props":2310,"children":2312},{"className":2311},[],[2313],{"type":58,"value":2255},{"type":58,"value":2315}," — Latest time to attempt the call (optional)",{"type":52,"tag":2296,"props":2317,"children":2318},{},[2319,2321,2326],{"type":58,"value":2320},"If using ",{"type":52,"tag":82,"props":2322,"children":2324},{"className":2323},[],[2325],{"type":58,"value":914},{"type":58,"value":2327},", the latest version of the assistant is used at call time",{"type":52,"tag":2296,"props":2329,"children":2330},{},[2331,2333,2338],{"type":58,"value":2332},"For a fixed assistant config, use ",{"type":52,"tag":82,"props":2334,"children":2336},{"className":2335},[],[2337],{"type":58,"value":1360},{"type":58,"value":2339}," (transient) instead",{"type":52,"tag":99,"props":2341,"children":2343},{"id":2342},"batch-calls",[2344],{"type":58,"value":2345},"Batch Calls",{"type":52,"tag":61,"props":2347,"children":2348},{},[2349],{"type":58,"value":2350},"Call multiple numbers in one request:",{"type":52,"tag":113,"props":2352,"children":2354},{"className":888,"code":2353,"language":890,"meta":118,"style":118},"{\n  \"assistantId\": \"assistant-id\",\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customers\": [\n    { \"number\": \"+11234567890\", \"name\": \"Alice\" },\n    { \"number\": \"+10987654321\", \"name\": \"Bob\" },\n    { \"number\": \"+15551234567\", \"name\": \"Carol\" }\n  ]\n}\n",[2355],{"type":52,"tag":82,"props":2356,"children":2357},{"__ignoreMap":118},[2358,2365,2400,2435,2459,2532,2605,2678,2686],{"type":52,"tag":124,"props":2359,"children":2360},{"class":126,"line":127},[2361],{"type":52,"tag":124,"props":2362,"children":2363},{"style":167},[2364],{"type":58,"value":233},{"type":52,"tag":124,"props":2366,"children":2367},{"class":126,"line":158},[2368,2372,2376,2380,2384,2388,2392,2396],{"type":52,"tag":124,"props":2369,"children":2370},{"style":167},[2371],{"type":58,"value":909},{"type":52,"tag":124,"props":2373,"children":2374},{"style":368},[2375],{"type":58,"value":914},{"type":52,"tag":124,"props":2377,"children":2378},{"style":167},[2379],{"type":58,"value":185},{"type":52,"tag":124,"props":2381,"children":2382},{"style":167},[2383],{"type":58,"value":412},{"type":52,"tag":124,"props":2385,"children":2386},{"style":167},[2387],{"type":58,"value":170},{"type":52,"tag":124,"props":2389,"children":2390},{"style":136},[2391],{"type":58,"value":931},{"type":52,"tag":124,"props":2393,"children":2394},{"style":167},[2395],{"type":58,"value":185},{"type":52,"tag":124,"props":2397,"children":2398},{"style":167},[2399],{"type":58,"value":542},{"type":52,"tag":124,"props":2401,"children":2402},{"class":126,"line":192},[2403,2407,2411,2415,2419,2423,2427,2431],{"type":52,"tag":124,"props":2404,"children":2405},{"style":167},[2406],{"type":58,"value":909},{"type":52,"tag":124,"props":2408,"children":2409},{"style":368},[2410],{"type":58,"value":951},{"type":52,"tag":124,"props":2412,"children":2413},{"style":167},[2414],{"type":58,"value":185},{"type":52,"tag":124,"props":2416,"children":2417},{"style":167},[2418],{"type":58,"value":412},{"type":52,"tag":124,"props":2420,"children":2421},{"style":167},[2422],{"type":58,"value":170},{"type":52,"tag":124,"props":2424,"children":2425},{"style":136},[2426],{"type":58,"value":968},{"type":52,"tag":124,"props":2428,"children":2429},{"style":167},[2430],{"type":58,"value":185},{"type":52,"tag":124,"props":2432,"children":2433},{"style":167},[2434],{"type":58,"value":542},{"type":52,"tag":124,"props":2436,"children":2437},{"class":126,"line":217},[2438,2442,2447,2451,2455],{"type":52,"tag":124,"props":2439,"children":2440},{"style":167},[2441],{"type":58,"value":909},{"type":52,"tag":124,"props":2443,"children":2444},{"style":368},[2445],{"type":58,"value":2446},"customers",{"type":52,"tag":124,"props":2448,"children":2449},{"style":167},[2450],{"type":58,"value":185},{"type":52,"tag":124,"props":2452,"children":2453},{"style":167},[2454],{"type":58,"value":412},{"type":52,"tag":124,"props":2456,"children":2457},{"style":167},[2458],{"type":58,"value":1569},{"type":52,"tag":124,"props":2460,"children":2461},{"class":126,"line":236},[2462,2467,2471,2475,2479,2483,2487,2491,2495,2499,2503,2507,2511,2515,2519,2524,2528],{"type":52,"tag":124,"props":2463,"children":2464},{"style":167},[2465],{"type":58,"value":2466},"    {",{"type":52,"tag":124,"props":2468,"children":2469},{"style":167},[2470],{"type":58,"value":170},{"type":52,"tag":124,"props":2472,"children":2473},{"style":131},[2474],{"type":58,"value":1013},{"type":52,"tag":124,"props":2476,"children":2477},{"style":167},[2478],{"type":58,"value":185},{"type":52,"tag":124,"props":2480,"children":2481},{"style":167},[2482],{"type":58,"value":412},{"type":52,"tag":124,"props":2484,"children":2485},{"style":167},[2486],{"type":58,"value":170},{"type":52,"tag":124,"props":2488,"children":2489},{"style":136},[2490],{"type":58,"value":609},{"type":52,"tag":124,"props":2492,"children":2493},{"style":167},[2494],{"type":58,"value":185},{"type":52,"tag":124,"props":2496,"children":2497},{"style":167},[2498],{"type":58,"value":690},{"type":52,"tag":124,"props":2500,"children":2501},{"style":167},[2502],{"type":58,"value":170},{"type":52,"tag":124,"props":2504,"children":2505},{"style":131},[2506],{"type":58,"value":1049},{"type":52,"tag":124,"props":2508,"children":2509},{"style":167},[2510],{"type":58,"value":185},{"type":52,"tag":124,"props":2512,"children":2513},{"style":167},[2514],{"type":58,"value":412},{"type":52,"tag":124,"props":2516,"children":2517},{"style":167},[2518],{"type":58,"value":170},{"type":52,"tag":124,"props":2520,"children":2521},{"style":136},[2522],{"type":58,"value":2523},"Alice",{"type":52,"tag":124,"props":2525,"children":2526},{"style":167},[2527],{"type":58,"value":185},{"type":52,"tag":124,"props":2529,"children":2530},{"style":167},[2531],{"type":58,"value":1787},{"type":52,"tag":124,"props":2533,"children":2534},{"class":126,"line":245},[2535,2539,2543,2547,2551,2555,2559,2564,2568,2572,2576,2580,2584,2588,2592,2597,2601],{"type":52,"tag":124,"props":2536,"children":2537},{"style":167},[2538],{"type":58,"value":2466},{"type":52,"tag":124,"props":2540,"children":2541},{"style":167},[2542],{"type":58,"value":170},{"type":52,"tag":124,"props":2544,"children":2545},{"style":131},[2546],{"type":58,"value":1013},{"type":52,"tag":124,"props":2548,"children":2549},{"style":167},[2550],{"type":58,"value":185},{"type":52,"tag":124,"props":2552,"children":2553},{"style":167},[2554],{"type":58,"value":412},{"type":52,"tag":124,"props":2556,"children":2557},{"style":167},[2558],{"type":58,"value":170},{"type":52,"tag":124,"props":2560,"children":2561},{"style":136},[2562],{"type":58,"value":2563},"+10987654321",{"type":52,"tag":124,"props":2565,"children":2566},{"style":167},[2567],{"type":58,"value":185},{"type":52,"tag":124,"props":2569,"children":2570},{"style":167},[2571],{"type":58,"value":690},{"type":52,"tag":124,"props":2573,"children":2574},{"style":167},[2575],{"type":58,"value":170},{"type":52,"tag":124,"props":2577,"children":2578},{"style":131},[2579],{"type":58,"value":1049},{"type":52,"tag":124,"props":2581,"children":2582},{"style":167},[2583],{"type":58,"value":185},{"type":52,"tag":124,"props":2585,"children":2586},{"style":167},[2587],{"type":58,"value":412},{"type":52,"tag":124,"props":2589,"children":2590},{"style":167},[2591],{"type":58,"value":170},{"type":52,"tag":124,"props":2593,"children":2594},{"style":136},[2595],{"type":58,"value":2596},"Bob",{"type":52,"tag":124,"props":2598,"children":2599},{"style":167},[2600],{"type":58,"value":185},{"type":52,"tag":124,"props":2602,"children":2603},{"style":167},[2604],{"type":58,"value":1787},{"type":52,"tag":124,"props":2606,"children":2607},{"class":126,"line":30},[2608,2612,2616,2620,2624,2628,2632,2637,2641,2645,2649,2653,2657,2661,2665,2670,2674],{"type":52,"tag":124,"props":2609,"children":2610},{"style":167},[2611],{"type":58,"value":2466},{"type":52,"tag":124,"props":2613,"children":2614},{"style":167},[2615],{"type":58,"value":170},{"type":52,"tag":124,"props":2617,"children":2618},{"style":131},[2619],{"type":58,"value":1013},{"type":52,"tag":124,"props":2621,"children":2622},{"style":167},[2623],{"type":58,"value":185},{"type":52,"tag":124,"props":2625,"children":2626},{"style":167},[2627],{"type":58,"value":412},{"type":52,"tag":124,"props":2629,"children":2630},{"style":167},[2631],{"type":58,"value":170},{"type":52,"tag":124,"props":2633,"children":2634},{"style":136},[2635],{"type":58,"value":2636},"+15551234567",{"type":52,"tag":124,"props":2638,"children":2639},{"style":167},[2640],{"type":58,"value":185},{"type":52,"tag":124,"props":2642,"children":2643},{"style":167},[2644],{"type":58,"value":690},{"type":52,"tag":124,"props":2646,"children":2647},{"style":167},[2648],{"type":58,"value":170},{"type":52,"tag":124,"props":2650,"children":2651},{"style":131},[2652],{"type":58,"value":1049},{"type":52,"tag":124,"props":2654,"children":2655},{"style":167},[2656],{"type":58,"value":185},{"type":52,"tag":124,"props":2658,"children":2659},{"style":167},[2660],{"type":58,"value":412},{"type":52,"tag":124,"props":2662,"children":2663},{"style":167},[2664],{"type":58,"value":170},{"type":52,"tag":124,"props":2666,"children":2667},{"style":136},[2668],{"type":58,"value":2669},"Carol",{"type":52,"tag":124,"props":2671,"children":2672},{"style":167},[2673],{"type":58,"value":185},{"type":52,"tag":124,"props":2675,"children":2676},{"style":167},[2677],{"type":58,"value":1912},{"type":52,"tag":124,"props":2679,"children":2680},{"class":126,"line":262},[2681],{"type":52,"tag":124,"props":2682,"children":2683},{"style":167},[2684],{"type":58,"value":2685},"  ]\n",{"type":52,"tag":124,"props":2687,"children":2688},{"class":126,"line":271},[2689],{"type":52,"tag":124,"props":2690,"children":2691},{"style":167},[2692],{"type":58,"value":1115},{"type":52,"tag":61,"props":2694,"children":2695},{},[2696,2698,2703],{"type":58,"value":2697},"Combine with ",{"type":52,"tag":82,"props":2699,"children":2701},{"className":2700},[],[2702],{"type":58,"value":2194},{"type":58,"value":2704}," for scheduled batch calls.",{"type":52,"tag":99,"props":2706,"children":2708},{"id":2707},"call-with-metadata",[2709],{"type":58,"value":2710},"Call with Metadata",{"type":52,"tag":61,"props":2712,"children":2713},{},[2714],{"type":58,"value":2715},"Pass custom data accessible during the call:",{"type":52,"tag":113,"props":2717,"children":2719},{"className":888,"code":2718,"language":890,"meta":118,"style":118},"{\n  \"assistantId\": \"assistant-id\",\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customer\": {\n    \"number\": \"+11234567890\"\n  },\n  \"metadata\": {\n    \"orderId\": \"ORD-12345\",\n    \"department\": \"billing\"\n  }\n}\n",[2720],{"type":52,"tag":82,"props":2721,"children":2722},{"__ignoreMap":118},[2723,2730,2765,2800,2823,2854,2861,2885,2922,2955,2962],{"type":52,"tag":124,"props":2724,"children":2725},{"class":126,"line":127},[2726],{"type":52,"tag":124,"props":2727,"children":2728},{"style":167},[2729],{"type":58,"value":233},{"type":52,"tag":124,"props":2731,"children":2732},{"class":126,"line":158},[2733,2737,2741,2745,2749,2753,2757,2761],{"type":52,"tag":124,"props":2734,"children":2735},{"style":167},[2736],{"type":58,"value":909},{"type":52,"tag":124,"props":2738,"children":2739},{"style":368},[2740],{"type":58,"value":914},{"type":52,"tag":124,"props":2742,"children":2743},{"style":167},[2744],{"type":58,"value":185},{"type":52,"tag":124,"props":2746,"children":2747},{"style":167},[2748],{"type":58,"value":412},{"type":52,"tag":124,"props":2750,"children":2751},{"style":167},[2752],{"type":58,"value":170},{"type":52,"tag":124,"props":2754,"children":2755},{"style":136},[2756],{"type":58,"value":931},{"type":52,"tag":124,"props":2758,"children":2759},{"style":167},[2760],{"type":58,"value":185},{"type":52,"tag":124,"props":2762,"children":2763},{"style":167},[2764],{"type":58,"value":542},{"type":52,"tag":124,"props":2766,"children":2767},{"class":126,"line":192},[2768,2772,2776,2780,2784,2788,2792,2796],{"type":52,"tag":124,"props":2769,"children":2770},{"style":167},[2771],{"type":58,"value":909},{"type":52,"tag":124,"props":2773,"children":2774},{"style":368},[2775],{"type":58,"value":951},{"type":52,"tag":124,"props":2777,"children":2778},{"style":167},[2779],{"type":58,"value":185},{"type":52,"tag":124,"props":2781,"children":2782},{"style":167},[2783],{"type":58,"value":412},{"type":52,"tag":124,"props":2785,"children":2786},{"style":167},[2787],{"type":58,"value":170},{"type":52,"tag":124,"props":2789,"children":2790},{"style":136},[2791],{"type":58,"value":968},{"type":52,"tag":124,"props":2793,"children":2794},{"style":167},[2795],{"type":58,"value":185},{"type":52,"tag":124,"props":2797,"children":2798},{"style":167},[2799],{"type":58,"value":542},{"type":52,"tag":124,"props":2801,"children":2802},{"class":126,"line":217},[2803,2807,2811,2815,2819],{"type":52,"tag":124,"props":2804,"children":2805},{"style":167},[2806],{"type":58,"value":909},{"type":52,"tag":124,"props":2808,"children":2809},{"style":368},[2810],{"type":58,"value":988},{"type":52,"tag":124,"props":2812,"children":2813},{"style":167},[2814],{"type":58,"value":185},{"type":52,"tag":124,"props":2816,"children":2817},{"style":167},[2818],{"type":58,"value":412},{"type":52,"tag":124,"props":2820,"children":2821},{"style":167},[2822],{"type":58,"value":588},{"type":52,"tag":124,"props":2824,"children":2825},{"class":126,"line":236},[2826,2830,2834,2838,2842,2846,2850],{"type":52,"tag":124,"props":2827,"children":2828},{"style":167},[2829],{"type":58,"value":1008},{"type":52,"tag":124,"props":2831,"children":2832},{"style":131},[2833],{"type":58,"value":1013},{"type":52,"tag":124,"props":2835,"children":2836},{"style":167},[2837],{"type":58,"value":185},{"type":52,"tag":124,"props":2839,"children":2840},{"style":167},[2841],{"type":58,"value":412},{"type":52,"tag":124,"props":2843,"children":2844},{"style":167},[2845],{"type":58,"value":170},{"type":52,"tag":124,"props":2847,"children":2848},{"style":136},[2849],{"type":58,"value":609},{"type":52,"tag":124,"props":2851,"children":2852},{"style":167},[2853],{"type":58,"value":1172},{"type":52,"tag":124,"props":2855,"children":2856},{"class":126,"line":245},[2857],{"type":52,"tag":124,"props":2858,"children":2859},{"style":167},[2860],{"type":58,"value":625},{"type":52,"tag":124,"props":2862,"children":2863},{"class":126,"line":30},[2864,2868,2873,2877,2881],{"type":52,"tag":124,"props":2865,"children":2866},{"style":167},[2867],{"type":58,"value":909},{"type":52,"tag":124,"props":2869,"children":2870},{"style":368},[2871],{"type":58,"value":2872},"metadata",{"type":52,"tag":124,"props":2874,"children":2875},{"style":167},[2876],{"type":58,"value":185},{"type":52,"tag":124,"props":2878,"children":2879},{"style":167},[2880],{"type":58,"value":412},{"type":52,"tag":124,"props":2882,"children":2883},{"style":167},[2884],{"type":58,"value":588},{"type":52,"tag":124,"props":2886,"children":2887},{"class":126,"line":262},[2888,2892,2897,2901,2905,2909,2914,2918],{"type":52,"tag":124,"props":2889,"children":2890},{"style":167},[2891],{"type":58,"value":1008},{"type":52,"tag":124,"props":2893,"children":2894},{"style":131},[2895],{"type":58,"value":2896},"orderId",{"type":52,"tag":124,"props":2898,"children":2899},{"style":167},[2900],{"type":58,"value":185},{"type":52,"tag":124,"props":2902,"children":2903},{"style":167},[2904],{"type":58,"value":412},{"type":52,"tag":124,"props":2906,"children":2907},{"style":167},[2908],{"type":58,"value":170},{"type":52,"tag":124,"props":2910,"children":2911},{"style":136},[2912],{"type":58,"value":2913},"ORD-12345",{"type":52,"tag":124,"props":2915,"children":2916},{"style":167},[2917],{"type":58,"value":185},{"type":52,"tag":124,"props":2919,"children":2920},{"style":167},[2921],{"type":58,"value":542},{"type":52,"tag":124,"props":2923,"children":2924},{"class":126,"line":271},[2925,2929,2934,2938,2942,2946,2951],{"type":52,"tag":124,"props":2926,"children":2927},{"style":167},[2928],{"type":58,"value":1008},{"type":52,"tag":124,"props":2930,"children":2931},{"style":131},[2932],{"type":58,"value":2933},"department",{"type":52,"tag":124,"props":2935,"children":2936},{"style":167},[2937],{"type":58,"value":185},{"type":52,"tag":124,"props":2939,"children":2940},{"style":167},[2941],{"type":58,"value":412},{"type":52,"tag":124,"props":2943,"children":2944},{"style":167},[2945],{"type":58,"value":170},{"type":52,"tag":124,"props":2947,"children":2948},{"style":136},[2949],{"type":58,"value":2950},"billing",{"type":52,"tag":124,"props":2952,"children":2953},{"style":167},[2954],{"type":58,"value":1172},{"type":52,"tag":124,"props":2956,"children":2957},{"class":126,"line":280},[2958],{"type":52,"tag":124,"props":2959,"children":2960},{"style":167},[2961],{"type":58,"value":1107},{"type":52,"tag":124,"props":2963,"children":2964},{"class":126,"line":628},[2965],{"type":52,"tag":124,"props":2966,"children":2967},{"style":167},[2968],{"type":58,"value":1115},{"type":52,"tag":99,"props":2970,"children":2972},{"id":2971},"managing-calls",[2973],{"type":58,"value":2974},"Managing Calls",{"type":52,"tag":113,"props":2976,"children":2978},{"className":115,"code":2977,"language":117,"meta":118,"style":118},"# List calls\ncurl \"https:\u002F\u002Fapi.vapi.ai\u002Fcall?limit=10\" \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n\n# Get a specific call\ncurl https:\u002F\u002Fapi.vapi.ai\u002Fcall\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n\n# Get call with transcript and recording\ncurl https:\u002F\u002Fapi.vapi.ai\u002Fcall\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n# Response includes: artifact.transcript, artifact.recordingUrl,\n# analysis.summary, and costBreakdown when those outputs are enabled\n\n# Delete a call\ncurl -X DELETE https:\u002F\u002Fapi.vapi.ai\u002Fcall\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n",[2979],{"type":52,"tag":82,"props":2980,"children":2981},{"__ignoreMap":118},[2982,2991,3015,3038,3045,3053,3069,3092,3099,3107,3122,3145,3153,3161,3168,3176,3200],{"type":52,"tag":124,"props":2983,"children":2984},{"class":126,"line":127},[2985],{"type":52,"tag":124,"props":2986,"children":2988},{"style":2987},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[2989],{"type":58,"value":2990},"# List calls\n",{"type":52,"tag":124,"props":2992,"children":2993},{"class":126,"line":158},[2994,2998,3002,3007,3011],{"type":52,"tag":124,"props":2995,"children":2996},{"style":131},[2997],{"type":58,"value":108},{"type":52,"tag":124,"props":2999,"children":3000},{"style":167},[3001],{"type":58,"value":170},{"type":52,"tag":124,"props":3003,"children":3004},{"style":136},[3005],{"type":58,"value":3006},"https:\u002F\u002Fapi.vapi.ai\u002Fcall?limit=10",{"type":52,"tag":124,"props":3008,"children":3009},{"style":167},[3010],{"type":58,"value":185},{"type":52,"tag":124,"props":3012,"children":3013},{"style":152},[3014],{"type":58,"value":155},{"type":52,"tag":124,"props":3016,"children":3017},{"class":126,"line":192},[3018,3022,3026,3030,3034],{"type":52,"tag":124,"props":3019,"children":3020},{"style":136},[3021],{"type":58,"value":164},{"type":52,"tag":124,"props":3023,"children":3024},{"style":167},[3025],{"type":58,"value":170},{"type":52,"tag":124,"props":3027,"children":3028},{"style":136},[3029],{"type":58,"value":175},{"type":52,"tag":124,"props":3031,"children":3032},{"style":152},[3033],{"type":58,"value":180},{"type":52,"tag":124,"props":3035,"children":3036},{"style":167},[3037],{"type":58,"value":1172},{"type":52,"tag":124,"props":3039,"children":3040},{"class":126,"line":217},[3041],{"type":52,"tag":124,"props":3042,"children":3043},{"emptyLinePlaceholder":359},[3044],{"type":58,"value":362},{"type":52,"tag":124,"props":3046,"children":3047},{"class":126,"line":236},[3048],{"type":52,"tag":124,"props":3049,"children":3050},{"style":2987},[3051],{"type":58,"value":3052},"# Get a specific call\n",{"type":52,"tag":124,"props":3054,"children":3055},{"class":126,"line":245},[3056,3060,3065],{"type":52,"tag":124,"props":3057,"children":3058},{"style":131},[3059],{"type":58,"value":108},{"type":52,"tag":124,"props":3061,"children":3062},{"style":136},[3063],{"type":58,"value":3064}," https:\u002F\u002Fapi.vapi.ai\u002Fcall\u002F{id}",{"type":52,"tag":124,"props":3066,"children":3067},{"style":152},[3068],{"type":58,"value":155},{"type":52,"tag":124,"props":3070,"children":3071},{"class":126,"line":30},[3072,3076,3080,3084,3088],{"type":52,"tag":124,"props":3073,"children":3074},{"style":136},[3075],{"type":58,"value":164},{"type":52,"tag":124,"props":3077,"children":3078},{"style":167},[3079],{"type":58,"value":170},{"type":52,"tag":124,"props":3081,"children":3082},{"style":136},[3083],{"type":58,"value":175},{"type":52,"tag":124,"props":3085,"children":3086},{"style":152},[3087],{"type":58,"value":180},{"type":52,"tag":124,"props":3089,"children":3090},{"style":167},[3091],{"type":58,"value":1172},{"type":52,"tag":124,"props":3093,"children":3094},{"class":126,"line":262},[3095],{"type":52,"tag":124,"props":3096,"children":3097},{"emptyLinePlaceholder":359},[3098],{"type":58,"value":362},{"type":52,"tag":124,"props":3100,"children":3101},{"class":126,"line":271},[3102],{"type":52,"tag":124,"props":3103,"children":3104},{"style":2987},[3105],{"type":58,"value":3106},"# Get call with transcript and recording\n",{"type":52,"tag":124,"props":3108,"children":3109},{"class":126,"line":280},[3110,3114,3118],{"type":52,"tag":124,"props":3111,"children":3112},{"style":131},[3113],{"type":58,"value":108},{"type":52,"tag":124,"props":3115,"children":3116},{"style":136},[3117],{"type":58,"value":3064},{"type":52,"tag":124,"props":3119,"children":3120},{"style":152},[3121],{"type":58,"value":155},{"type":52,"tag":124,"props":3123,"children":3124},{"class":126,"line":628},[3125,3129,3133,3137,3141],{"type":52,"tag":124,"props":3126,"children":3127},{"style":136},[3128],{"type":58,"value":164},{"type":52,"tag":124,"props":3130,"children":3131},{"style":167},[3132],{"type":58,"value":170},{"type":52,"tag":124,"props":3134,"children":3135},{"style":136},[3136],{"type":58,"value":175},{"type":52,"tag":124,"props":3138,"children":3139},{"style":152},[3140],{"type":58,"value":180},{"type":52,"tag":124,"props":3142,"children":3143},{"style":167},[3144],{"type":58,"value":1172},{"type":52,"tag":124,"props":3146,"children":3147},{"class":126,"line":645},[3148],{"type":52,"tag":124,"props":3149,"children":3150},{"style":2987},[3151],{"type":58,"value":3152},"# Response includes: artifact.transcript, artifact.recordingUrl,\n",{"type":52,"tag":124,"props":3154,"children":3155},{"class":126,"line":653},[3156],{"type":52,"tag":124,"props":3157,"children":3158},{"style":2987},[3159],{"type":58,"value":3160},"# analysis.summary, and costBreakdown when those outputs are enabled\n",{"type":52,"tag":124,"props":3162,"children":3163},{"class":126,"line":828},[3164],{"type":52,"tag":124,"props":3165,"children":3166},{"emptyLinePlaceholder":359},[3167],{"type":58,"value":362},{"type":52,"tag":124,"props":3169,"children":3170},{"class":126,"line":836},[3171],{"type":52,"tag":124,"props":3172,"children":3173},{"style":2987},[3174],{"type":58,"value":3175},"# Delete a call\n",{"type":52,"tag":124,"props":3177,"children":3178},{"class":126,"line":845},[3179,3183,3187,3192,3196],{"type":52,"tag":124,"props":3180,"children":3181},{"style":131},[3182],{"type":58,"value":108},{"type":52,"tag":124,"props":3184,"children":3185},{"style":136},[3186],{"type":58,"value":139},{"type":52,"tag":124,"props":3188,"children":3189},{"style":136},[3190],{"type":58,"value":3191}," DELETE",{"type":52,"tag":124,"props":3193,"children":3194},{"style":136},[3195],{"type":58,"value":3064},{"type":52,"tag":124,"props":3197,"children":3198},{"style":152},[3199],{"type":58,"value":155},{"type":52,"tag":124,"props":3201,"children":3202},{"class":126,"line":853},[3203,3207,3211,3215,3219],{"type":52,"tag":124,"props":3204,"children":3205},{"style":136},[3206],{"type":58,"value":164},{"type":52,"tag":124,"props":3208,"children":3209},{"style":167},[3210],{"type":58,"value":170},{"type":52,"tag":124,"props":3212,"children":3213},{"style":136},[3214],{"type":58,"value":175},{"type":52,"tag":124,"props":3216,"children":3217},{"style":152},[3218],{"type":58,"value":180},{"type":52,"tag":124,"props":3220,"children":3221},{"style":167},[3222],{"type":58,"value":1172},{"type":52,"tag":99,"props":3224,"children":3226},{"id":3225},"call-response",[3227],{"type":58,"value":3228},"Call Response",{"type":52,"tag":61,"props":3230,"children":3231},{},[3232],{"type":58,"value":3233},"A successful call creation returns:",{"type":52,"tag":113,"props":3235,"children":3237},{"className":888,"code":3236,"language":890,"meta":118,"style":118},"{\n  \"id\": \"call-uuid\",\n  \"orgId\": \"org-uuid\",\n  \"type\": \"outboundPhoneCall\",\n  \"status\": \"queued\",\n  \"assistantId\": \"assistant-id\",\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customer\": {\n    \"number\": \"+11234567890\"\n  },\n  \"createdAt\": \"2025-01-15T10:00:00Z\"\n}\n",[3238],{"type":52,"tag":82,"props":3239,"children":3240},{"__ignoreMap":118},[3241,3248,3285,3322,3359,3396,3431,3466,3489,3520,3527,3560],{"type":52,"tag":124,"props":3242,"children":3243},{"class":126,"line":127},[3244],{"type":52,"tag":124,"props":3245,"children":3246},{"style":167},[3247],{"type":58,"value":233},{"type":52,"tag":124,"props":3249,"children":3250},{"class":126,"line":158},[3251,3255,3260,3264,3268,3272,3277,3281],{"type":52,"tag":124,"props":3252,"children":3253},{"style":167},[3254],{"type":58,"value":909},{"type":52,"tag":124,"props":3256,"children":3257},{"style":368},[3258],{"type":58,"value":3259},"id",{"type":52,"tag":124,"props":3261,"children":3262},{"style":167},[3263],{"type":58,"value":185},{"type":52,"tag":124,"props":3265,"children":3266},{"style":167},[3267],{"type":58,"value":412},{"type":52,"tag":124,"props":3269,"children":3270},{"style":167},[3271],{"type":58,"value":170},{"type":52,"tag":124,"props":3273,"children":3274},{"style":136},[3275],{"type":58,"value":3276},"call-uuid",{"type":52,"tag":124,"props":3278,"children":3279},{"style":167},[3280],{"type":58,"value":185},{"type":52,"tag":124,"props":3282,"children":3283},{"style":167},[3284],{"type":58,"value":542},{"type":52,"tag":124,"props":3286,"children":3287},{"class":126,"line":192},[3288,3292,3297,3301,3305,3309,3314,3318],{"type":52,"tag":124,"props":3289,"children":3290},{"style":167},[3291],{"type":58,"value":909},{"type":52,"tag":124,"props":3293,"children":3294},{"style":368},[3295],{"type":58,"value":3296},"orgId",{"type":52,"tag":124,"props":3298,"children":3299},{"style":167},[3300],{"type":58,"value":185},{"type":52,"tag":124,"props":3302,"children":3303},{"style":167},[3304],{"type":58,"value":412},{"type":52,"tag":124,"props":3306,"children":3307},{"style":167},[3308],{"type":58,"value":170},{"type":52,"tag":124,"props":3310,"children":3311},{"style":136},[3312],{"type":58,"value":3313},"org-uuid",{"type":52,"tag":124,"props":3315,"children":3316},{"style":167},[3317],{"type":58,"value":185},{"type":52,"tag":124,"props":3319,"children":3320},{"style":167},[3321],{"type":58,"value":542},{"type":52,"tag":124,"props":3323,"children":3324},{"class":126,"line":217},[3325,3329,3334,3338,3342,3346,3351,3355],{"type":52,"tag":124,"props":3326,"children":3327},{"style":167},[3328],{"type":58,"value":909},{"type":52,"tag":124,"props":3330,"children":3331},{"style":368},[3332],{"type":58,"value":3333},"type",{"type":52,"tag":124,"props":3335,"children":3336},{"style":167},[3337],{"type":58,"value":185},{"type":52,"tag":124,"props":3339,"children":3340},{"style":167},[3341],{"type":58,"value":412},{"type":52,"tag":124,"props":3343,"children":3344},{"style":167},[3345],{"type":58,"value":170},{"type":52,"tag":124,"props":3347,"children":3348},{"style":136},[3349],{"type":58,"value":3350},"outboundPhoneCall",{"type":52,"tag":124,"props":3352,"children":3353},{"style":167},[3354],{"type":58,"value":185},{"type":52,"tag":124,"props":3356,"children":3357},{"style":167},[3358],{"type":58,"value":542},{"type":52,"tag":124,"props":3360,"children":3361},{"class":126,"line":236},[3362,3366,3371,3375,3379,3383,3388,3392],{"type":52,"tag":124,"props":3363,"children":3364},{"style":167},[3365],{"type":58,"value":909},{"type":52,"tag":124,"props":3367,"children":3368},{"style":368},[3369],{"type":58,"value":3370},"status",{"type":52,"tag":124,"props":3372,"children":3373},{"style":167},[3374],{"type":58,"value":185},{"type":52,"tag":124,"props":3376,"children":3377},{"style":167},[3378],{"type":58,"value":412},{"type":52,"tag":124,"props":3380,"children":3381},{"style":167},[3382],{"type":58,"value":170},{"type":52,"tag":124,"props":3384,"children":3385},{"style":136},[3386],{"type":58,"value":3387},"queued",{"type":52,"tag":124,"props":3389,"children":3390},{"style":167},[3391],{"type":58,"value":185},{"type":52,"tag":124,"props":3393,"children":3394},{"style":167},[3395],{"type":58,"value":542},{"type":52,"tag":124,"props":3397,"children":3398},{"class":126,"line":245},[3399,3403,3407,3411,3415,3419,3423,3427],{"type":52,"tag":124,"props":3400,"children":3401},{"style":167},[3402],{"type":58,"value":909},{"type":52,"tag":124,"props":3404,"children":3405},{"style":368},[3406],{"type":58,"value":914},{"type":52,"tag":124,"props":3408,"children":3409},{"style":167},[3410],{"type":58,"value":185},{"type":52,"tag":124,"props":3412,"children":3413},{"style":167},[3414],{"type":58,"value":412},{"type":52,"tag":124,"props":3416,"children":3417},{"style":167},[3418],{"type":58,"value":170},{"type":52,"tag":124,"props":3420,"children":3421},{"style":136},[3422],{"type":58,"value":931},{"type":52,"tag":124,"props":3424,"children":3425},{"style":167},[3426],{"type":58,"value":185},{"type":52,"tag":124,"props":3428,"children":3429},{"style":167},[3430],{"type":58,"value":542},{"type":52,"tag":124,"props":3432,"children":3433},{"class":126,"line":30},[3434,3438,3442,3446,3450,3454,3458,3462],{"type":52,"tag":124,"props":3435,"children":3436},{"style":167},[3437],{"type":58,"value":909},{"type":52,"tag":124,"props":3439,"children":3440},{"style":368},[3441],{"type":58,"value":951},{"type":52,"tag":124,"props":3443,"children":3444},{"style":167},[3445],{"type":58,"value":185},{"type":52,"tag":124,"props":3447,"children":3448},{"style":167},[3449],{"type":58,"value":412},{"type":52,"tag":124,"props":3451,"children":3452},{"style":167},[3453],{"type":58,"value":170},{"type":52,"tag":124,"props":3455,"children":3456},{"style":136},[3457],{"type":58,"value":968},{"type":52,"tag":124,"props":3459,"children":3460},{"style":167},[3461],{"type":58,"value":185},{"type":52,"tag":124,"props":3463,"children":3464},{"style":167},[3465],{"type":58,"value":542},{"type":52,"tag":124,"props":3467,"children":3468},{"class":126,"line":262},[3469,3473,3477,3481,3485],{"type":52,"tag":124,"props":3470,"children":3471},{"style":167},[3472],{"type":58,"value":909},{"type":52,"tag":124,"props":3474,"children":3475},{"style":368},[3476],{"type":58,"value":988},{"type":52,"tag":124,"props":3478,"children":3479},{"style":167},[3480],{"type":58,"value":185},{"type":52,"tag":124,"props":3482,"children":3483},{"style":167},[3484],{"type":58,"value":412},{"type":52,"tag":124,"props":3486,"children":3487},{"style":167},[3488],{"type":58,"value":588},{"type":52,"tag":124,"props":3490,"children":3491},{"class":126,"line":271},[3492,3496,3500,3504,3508,3512,3516],{"type":52,"tag":124,"props":3493,"children":3494},{"style":167},[3495],{"type":58,"value":1008},{"type":52,"tag":124,"props":3497,"children":3498},{"style":131},[3499],{"type":58,"value":1013},{"type":52,"tag":124,"props":3501,"children":3502},{"style":167},[3503],{"type":58,"value":185},{"type":52,"tag":124,"props":3505,"children":3506},{"style":167},[3507],{"type":58,"value":412},{"type":52,"tag":124,"props":3509,"children":3510},{"style":167},[3511],{"type":58,"value":170},{"type":52,"tag":124,"props":3513,"children":3514},{"style":136},[3515],{"type":58,"value":609},{"type":52,"tag":124,"props":3517,"children":3518},{"style":167},[3519],{"type":58,"value":1172},{"type":52,"tag":124,"props":3521,"children":3522},{"class":126,"line":280},[3523],{"type":52,"tag":124,"props":3524,"children":3525},{"style":167},[3526],{"type":58,"value":625},{"type":52,"tag":124,"props":3528,"children":3529},{"class":126,"line":628},[3530,3534,3539,3543,3547,3551,3556],{"type":52,"tag":124,"props":3531,"children":3532},{"style":167},[3533],{"type":58,"value":909},{"type":52,"tag":124,"props":3535,"children":3536},{"style":368},[3537],{"type":58,"value":3538},"createdAt",{"type":52,"tag":124,"props":3540,"children":3541},{"style":167},[3542],{"type":58,"value":185},{"type":52,"tag":124,"props":3544,"children":3545},{"style":167},[3546],{"type":58,"value":412},{"type":52,"tag":124,"props":3548,"children":3549},{"style":167},[3550],{"type":58,"value":170},{"type":52,"tag":124,"props":3552,"children":3553},{"style":136},[3554],{"type":58,"value":3555},"2025-01-15T10:00:00Z",{"type":52,"tag":124,"props":3557,"children":3558},{"style":167},[3559],{"type":58,"value":1172},{"type":52,"tag":124,"props":3561,"children":3562},{"class":126,"line":645},[3563],{"type":52,"tag":124,"props":3564,"children":3565},{"style":167},[3566],{"type":58,"value":1115},{"type":52,"tag":61,"props":3568,"children":3569},{},[3570,3572,3577,3579,3585,3586,3592,3593],{"type":58,"value":3571},"Call statuses: ",{"type":52,"tag":82,"props":3573,"children":3575},{"className":3574},[],[3576],{"type":58,"value":3387},{"type":58,"value":3578}," → ",{"type":52,"tag":82,"props":3580,"children":3582},{"className":3581},[],[3583],{"type":58,"value":3584},"ringing",{"type":58,"value":3578},{"type":52,"tag":82,"props":3587,"children":3589},{"className":3588},[],[3590],{"type":58,"value":3591},"in-progress",{"type":58,"value":3578},{"type":52,"tag":82,"props":3594,"children":3596},{"className":3595},[],[3597],{"type":58,"value":3598},"ended",{"type":52,"tag":99,"props":3600,"children":3602},{"id":3601},"compliance-warning",[3603],{"type":58,"value":3604},"Compliance Warning",{"type":52,"tag":61,"props":3606,"children":3607},{},[3608],{"type":58,"value":3609},"It is a violation of FCC law to dial phone numbers without consent in an automated manner. Review TCPA consent requirements before launching automated call campaigns.",{"type":52,"tag":99,"props":3611,"children":3613},{"id":3612},"references",[3614],{"type":58,"value":3615},"References",{"type":52,"tag":2292,"props":3617,"children":3618},{},[3619,3631,3641],{"type":52,"tag":2296,"props":3620,"children":3621},{},[3622],{"type":52,"tag":3623,"props":3624,"children":3628},"a",{"href":3625,"rel":3626},"https:\u002F\u002Fdocs.vapi.ai\u002Fcalls\u002Foutbound-calling",[3627],"nofollow",[3629],{"type":58,"value":3630},"Vapi Outbound Calls Docs",{"type":52,"tag":2296,"props":3632,"children":3633},{},[3634],{"type":52,"tag":3623,"props":3635,"children":3638},{"href":3636,"rel":3637},"https:\u002F\u002Fdocs.vapi.ai\u002Fcalls\u002Fcall-features",[3627],[3639],{"type":58,"value":3640},"Call Features",{"type":52,"tag":2296,"props":3642,"children":3643},{},[3644],{"type":52,"tag":3623,"props":3645,"children":3648},{"href":3646,"rel":3647},"https:\u002F\u002Fdocs.vapi.ai\u002Fcalls\u002Fvoicemail-detection",[3627],[3649],{"type":58,"value":3650},"Voicemail Detection",{"type":52,"tag":99,"props":3652,"children":3654},{"id":3653},"additional-resources",[3655],{"type":58,"value":3656},"Additional Resources",{"type":52,"tag":61,"props":3658,"children":3659},{},[3660,3662,3667],{"type":58,"value":3661},"Vapi provides a ",{"type":52,"tag":74,"props":3663,"children":3664},{},[3665],{"type":58,"value":3666},"documentation MCP server",{"type":58,"value":3668}," that gives compatible AI agents access to the Vapi knowledge base. Use its documentation search for advanced configuration, troubleshooting, SDK details, and anything beyond this skill.",{"type":52,"tag":61,"props":3670,"children":3671},{},[3672,3677],{"type":52,"tag":74,"props":3673,"children":3674},{},[3675],{"type":58,"value":3676},"Manual setup:",{"type":58,"value":3678}," If your agent doesn't auto-detect the config, run:",{"type":52,"tag":113,"props":3680,"children":3682},{"className":115,"code":3681,"language":117,"meta":118,"style":118},"claude mcp add vapi-docs -- npx -y mcp-remote https:\u002F\u002Fdocs.vapi.ai\u002F_mcp\u002Fserver\n",[3683],{"type":52,"tag":82,"props":3684,"children":3685},{"__ignoreMap":118},[3686],{"type":52,"tag":124,"props":3687,"children":3688},{"class":126,"line":127},[3689,3694,3699,3704,3709,3714,3719,3724,3729],{"type":52,"tag":124,"props":3690,"children":3691},{"style":131},[3692],{"type":58,"value":3693},"claude",{"type":52,"tag":124,"props":3695,"children":3696},{"style":136},[3697],{"type":58,"value":3698}," mcp",{"type":52,"tag":124,"props":3700,"children":3701},{"style":136},[3702],{"type":58,"value":3703}," add",{"type":52,"tag":124,"props":3705,"children":3706},{"style":136},[3707],{"type":58,"value":3708}," vapi-docs",{"type":52,"tag":124,"props":3710,"children":3711},{"style":136},[3712],{"type":58,"value":3713}," --",{"type":52,"tag":124,"props":3715,"children":3716},{"style":136},[3717],{"type":58,"value":3718}," npx",{"type":52,"tag":124,"props":3720,"children":3721},{"style":136},[3722],{"type":58,"value":3723}," -y",{"type":52,"tag":124,"props":3725,"children":3726},{"style":136},[3727],{"type":58,"value":3728}," mcp-remote",{"type":52,"tag":124,"props":3730,"children":3731},{"style":136},[3732],{"type":58,"value":3733}," https:\u002F\u002Fdocs.vapi.ai\u002F_mcp\u002Fserver\n",{"type":52,"tag":61,"props":3735,"children":3736},{},[3737,3739,3746],{"type":58,"value":3738},"See the ",{"type":52,"tag":3623,"props":3740,"children":3743},{"href":3741,"rel":3742},"https:\u002F\u002Fdocs.vapi.ai\u002Fcli\u002Fmcp",[3627],[3744],{"type":58,"value":3745},"Vapi MCP integration guide",{"type":58,"value":3747}," for setup instructions across supported agents.",{"type":52,"tag":3749,"props":3750,"children":3751},"style",{},[3752],{"type":58,"value":3753},"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":3755,"total":280},[3756,3771,3783,3790,3804,3816,3829,3842,3855,3869],{"slug":8,"name":8,"fn":3757,"description":3758,"org":3759,"tags":3760,"stars":3768,"repoUrl":3769,"updatedAt":3770},"build AI voice assistants with Vapi","Build AI voice assistants and phone agents with Vapi. Use this skill when users want to create voice agents, phone bots, IVR systems, outbound calling campaigns, or any voice-based AI application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3761,3762,3763,3764,3767],{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":24,"slug":25,"type":16},{"name":3765,"slug":3766,"type":16},"Text-to-Speech","text-to-speech",{"name":21,"slug":22,"type":16},56,"https:\u002F\u002Fgithub.com\u002FVapiAI\u002Fmcp-server","2026-07-17T06:06:13.535114",{"slug":3772,"name":3772,"fn":3773,"description":3774,"org":3775,"tags":3776,"stars":26,"repoUrl":27,"updatedAt":3782},"create-assistant","create Vapi voice AI assistants","Create Vapi voice AI assistant payloads or assistants through the Vapi API. Use when building phone or web call agents, generating assistant JSON, choosing safe default model\u002Fvoice\u002Ftranscriber settings, attaching existing Vapi tool IDs, adding assistant hooks, configuring HIPAA\u002Fcompliance only when explicitly requested, or fixing Vapi assistant API validation errors.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3777,3778,3781],{"name":18,"slug":19,"type":16},{"name":3779,"slug":3780,"type":16},"API Development","api-development",{"name":21,"slug":22,"type":16},"2026-07-20T05:57:28.680409",{"slug":4,"name":4,"fn":5,"description":6,"org":3784,"tags":3785,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3786,3787,3788,3789],{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":24,"slug":25,"type":16},{"name":21,"slug":22,"type":16},{"slug":3791,"name":3791,"fn":3792,"description":3793,"org":3794,"tags":3795,"stars":26,"repoUrl":27,"updatedAt":3803},"create-phone-number","manage Vapi phone numbers","Set up and manage phone numbers in Vapi for inbound and outbound voice AI calls. Use when importing Twilio, Vonage, or Telnyx numbers, buying Vapi numbers, or configuring phone numbers for assistants.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3796,3799,3802],{"name":3797,"slug":3798,"type":16},"Operations","operations",{"name":3800,"slug":3801,"type":16},"Twilio","twilio",{"name":21,"slug":22,"type":16},"2026-07-20T05:57:29.699227",{"slug":3805,"name":3805,"fn":3806,"description":3807,"org":3808,"tags":3809,"stars":26,"repoUrl":27,"updatedAt":3815},"create-squad","create multi-assistant voice agent squads","Create multi-assistant squads in Vapi with handoffs between specialized voice agents. Use when building complex voice workflows that need multiple assistants with different roles, like triage-to-booking or sales-to-support handoffs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3810,3811,3814],{"name":18,"slug":19,"type":16},{"name":3812,"slug":3813,"type":16},"Multi-Agent","multi-agent",{"name":21,"slug":22,"type":16},"2026-07-20T05:57:30.690452",{"slug":3817,"name":3817,"fn":3818,"description":3819,"org":3820,"tags":3821,"stars":26,"repoUrl":27,"updatedAt":3828},"create-tool","create custom tools for Vapi assistants","Create custom tools for Vapi voice assistants including function tools, API request tools, transfer call tools, end call tools, and integrations with Google Calendar, Sheets, Slack, and more. Use when adding capabilities to voice agents, building tool servers, or integrating external APIs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3822,3823,3824,3825],{"name":18,"slug":19,"type":16},{"name":3779,"slug":3780,"type":16},{"name":14,"slug":15,"type":16},{"name":3826,"slug":3827,"type":16},"Integrations","integrations","2026-07-20T05:57:27.69122",{"slug":95,"name":95,"fn":3830,"description":3831,"org":3832,"tags":3833,"stars":26,"repoUrl":27,"updatedAt":3841},"configure Vapi API authentication","Guide users through obtaining and configuring a Vapi API key. Use when the user needs to set up Vapi, when API calls fail due to missing keys, or when the user mentions needing access to Vapi's voice AI platform.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3834,3835,3838],{"name":3779,"slug":3780,"type":16},{"name":3836,"slug":3837,"type":16},"Auth","auth",{"name":3839,"slug":3840,"type":16},"Configuration","configuration","2026-07-20T05:57:25.717229",{"slug":3843,"name":3843,"fn":3844,"description":3845,"org":3846,"tags":3847,"stars":26,"repoUrl":27,"updatedAt":3854},"setup-webhook","configure Vapi webhooks for call events","Configure Vapi server URLs and webhooks to receive real-time call events, transcripts, tool calls, and end-of-call reports. Use when setting up webhook endpoints, building tool servers, or integrating Vapi events into your application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3848,3849,3850,3851],{"name":18,"slug":19,"type":16},{"name":3779,"slug":3780,"type":16},{"name":14,"slug":15,"type":16},{"name":3852,"slug":3853,"type":16},"Webhooks","webhooks","2026-07-20T05:57:31.703006",{"slug":3856,"name":3856,"fn":3857,"description":3858,"org":3859,"tags":3860,"stars":26,"repoUrl":27,"updatedAt":3868},"vapi-bootstrap-framework","scaffold Vapi voice agent projects","Scaffold a complete Vapi voice-agent project from a ROUGH_DRAFT.md spec. Generates package.json, tsconfig.json, .env.example, .gitignore, and the full TypeScript framework — scenario registry, per-language voice\u002Ftranscriber stack, prompt composer, assistant builder, and an idempotent bootstrap script — plus one rough first-draft body.md per scenario. Drop this skill in any project's .cursor\u002Fskills\u002F folder (or ~\u002F.cursor\u002Fskills\u002F for global use), write a ROUGH_DRAFT.md at the project root, name the skill, and `bun run bootstrap` puts the entire fleet live in dashboard.vapi.ai. Use when the user asks to scaffold or bootstrap Vapi voice agents from a rough draft, build a Vapi assistant fleet, or invokes this skill by name. Targets Bun + TypeScript + @vapi-ai\u002Fserver-sdk.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3861,3862,3865,3867],{"name":18,"slug":19,"type":16},{"name":3863,"slug":3864,"type":16},"Engineering","engineering",{"name":3866,"slug":302,"type":16},"TypeScript",{"name":21,"slug":22,"type":16},"2026-07-20T05:57:26.732699",{"slug":3870,"name":3870,"fn":3871,"description":3872,"org":3873,"tags":3874,"stars":26,"repoUrl":27,"updatedAt":3881},"vapi-prompt-builder","design and audit Vapi voice agent prompts","Create, improve, or audit Vapi voice agent and Squad system prompts for production phone and web based voice agents. Use when the user wants help designing a Vapi assistant prompt, multi-assistant Squad prompt set, refining an existing prompt, creating prompt sections, building an intake or handoff workflow, improving tool-use instructions, adding guardrails, or optimizing voice-agent behavior for brevity, turn-taking, error handling, caller data collection, escalation, handoffs, and spoken formatting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3875,3876,3879,3880],{"name":18,"slug":19,"type":16},{"name":3877,"slug":3878,"type":16},"Prompt Engineering","prompt-engineering",{"name":24,"slug":25,"type":16},{"name":21,"slug":22,"type":16},"2026-07-17T06:08:21.647767",{"items":3883,"total":271},[3884,3890,3897,3903,3909,3916,3922],{"slug":3772,"name":3772,"fn":3773,"description":3774,"org":3885,"tags":3886,"stars":26,"repoUrl":27,"updatedAt":3782},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3887,3888,3889],{"name":18,"slug":19,"type":16},{"name":3779,"slug":3780,"type":16},{"name":21,"slug":22,"type":16},{"slug":4,"name":4,"fn":5,"description":6,"org":3891,"tags":3892,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3893,3894,3895,3896],{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":24,"slug":25,"type":16},{"name":21,"slug":22,"type":16},{"slug":3791,"name":3791,"fn":3792,"description":3793,"org":3898,"tags":3899,"stars":26,"repoUrl":27,"updatedAt":3803},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3900,3901,3902],{"name":3797,"slug":3798,"type":16},{"name":3800,"slug":3801,"type":16},{"name":21,"slug":22,"type":16},{"slug":3805,"name":3805,"fn":3806,"description":3807,"org":3904,"tags":3905,"stars":26,"repoUrl":27,"updatedAt":3815},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3906,3907,3908],{"name":18,"slug":19,"type":16},{"name":3812,"slug":3813,"type":16},{"name":21,"slug":22,"type":16},{"slug":3817,"name":3817,"fn":3818,"description":3819,"org":3910,"tags":3911,"stars":26,"repoUrl":27,"updatedAt":3828},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3912,3913,3914,3915],{"name":18,"slug":19,"type":16},{"name":3779,"slug":3780,"type":16},{"name":14,"slug":15,"type":16},{"name":3826,"slug":3827,"type":16},{"slug":95,"name":95,"fn":3830,"description":3831,"org":3917,"tags":3918,"stars":26,"repoUrl":27,"updatedAt":3841},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3919,3920,3921],{"name":3779,"slug":3780,"type":16},{"name":3836,"slug":3837,"type":16},{"name":3839,"slug":3840,"type":16},{"slug":3843,"name":3843,"fn":3844,"description":3845,"org":3923,"tags":3924,"stars":26,"repoUrl":27,"updatedAt":3854},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3925,3926,3927,3928],{"name":18,"slug":19,"type":16},{"name":3779,"slug":3780,"type":16},{"name":14,"slug":15,"type":16},{"name":3852,"slug":3853,"type":16}]