[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vapi-create-phone-number":3,"mdc-q4zeec-key":40,"related-org-vapi-create-phone-number":1767,"related-repo-vapi-create-phone-number":1898},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":35,"sourceUrl":38,"mdContent":39},"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},"vapi","Vapi","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvapi.png","VapiAI",[13,17,20],{"name":14,"slug":15,"type":16},"Operations","operations","tag",{"name":18,"slug":19,"type":16},"Voice","voice",{"name":21,"slug":22,"type":16},"Twilio","twilio",53,"https:\u002F\u002Fgithub.com\u002FVapiAI\u002Fskills","2026-07-20T05:57:29.699227","MIT",7,[29,30,31,32,33,8,34],"agent-skills","claude-code","codex-skills","openclaw-skills","skills","vapi-ai",{"repoUrl":24,"stars":23,"forks":27,"topics":36,"description":37},[29,30,31,32,33,8,34],"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-phone-number","---\nname: create-phone-number\ndescription: 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.\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 Phone Number Setup\n\nImport phone numbers from Twilio, Vonage, or Telnyx, or use Vapi's built-in numbers to connect voice assistants to real phone calls.\n\n> **Setup:** Ensure `VAPI_API_KEY` is set. See the `setup-api-key` skill if needed.\n\n## Quick Start — Buy a Vapi Number\n\nVapi provides free phone numbers for testing with daily call limits.\n\n```bash\ncurl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fphone-number \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"provider\": \"vapi\",\n    \"assistantId\": \"your-assistant-id\",\n    \"name\": \"Main Support Line\"\n  }'\n```\n\n## Import from Twilio\n\n```bash\ncurl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fphone-number \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"provider\": \"twilio\",\n    \"number\": \"+11234567890\",\n    \"twilioAccountSid\": \"your-twilio-account-sid\",\n    \"twilioAuthToken\": \"your-twilio-auth-token\",\n    \"assistantId\": \"your-assistant-id\",\n    \"name\": \"Twilio Support Line\"\n  }'\n```\n\n## Import from Vonage\n\n```bash\ncurl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fphone-number \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"provider\": \"vonage\",\n    \"number\": \"+11234567890\",\n    \"credentialId\": \"your-vonage-credential-id\",\n    \"assistantId\": \"your-assistant-id\",\n    \"name\": \"Vonage Support Line\"\n  }'\n```\n\n## Import from Telnyx\n\n```bash\ncurl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fphone-number \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"provider\": \"telnyx\",\n    \"number\": \"+11234567890\",\n    \"credentialId\": \"your-telnyx-credential-id\",\n    \"assistantId\": \"your-assistant-id\",\n    \"name\": \"Telnyx Support Line\"\n  }'\n```\n\n## Assign an Assistant\n\nEvery phone number can be linked to an assistant or squad for inbound calls:\n\n```bash\ncurl -X PATCH https:\u002F\u002Fapi.vapi.ai\u002Fphone-number\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"assistantId\": \"your-assistant-id\"\n  }'\n```\n\nOr assign a squad:\n```bash\ncurl -X PATCH https:\u002F\u002Fapi.vapi.ai\u002Fphone-number\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"squadId\": \"your-squad-id\"\n  }'\n```\n\n## Phone Number Hooks\n\nConfigure automated actions when calls come in:\n\n```json\n{\n  \"hooks\": [\n    {\n      \"on\": \"call.ringing\",\n      \"do\": [\n        {\n          \"type\": \"say\",\n          \"exact\": \"Please hold while we connect you.\"\n        }\n      ]\n    }\n  ]\n}\n```\n\n## Managing Phone Numbers\n\n```bash\n# List all phone numbers\ncurl https:\u002F\u002Fapi.vapi.ai\u002Fphone-number \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n\n# Get a phone number\ncurl https:\u002F\u002Fapi.vapi.ai\u002Fphone-number\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n\n# Update a phone number\ncurl -X PATCH https:\u002F\u002Fapi.vapi.ai\u002Fphone-number\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"name\": \"Updated Name\"}'\n\n# Delete a phone number\ncurl -X DELETE https:\u002F\u002Fapi.vapi.ai\u002Fphone-number\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n```\n\n## Inbound Call Flow\n\n1. Caller dials your Vapi phone number\n2. Vapi routes the call to the assigned assistant or squad\n3. The assistant speaks its `firstMessage`\n4. The conversation proceeds with the configured model, voice, and tools\n\n## Outbound Call Flow\n\n1. Create a call via `POST \u002Fcall` with `phoneNumberId` and `customer.number`\n2. Vapi dials the customer from your phone number\n3. When answered, the assistant begins the conversation\n\n## Free Number Limitations\n\n- Cannot make international calls\n- Daily call limits apply\n- For production use, import your own Twilio\u002FVonage\u002FTelnyx numbers\n\n## References\n\n- [Vapi Phone Numbers Docs](https:\u002F\u002Fdocs.vapi.ai\u002Fphone-numbers\u002Fimport-twilio)\n- [Free Telephony](https:\u002F\u002Fdocs.vapi.ai\u002Ffree-telephony)\n- [Phone Number Hooks](https:\u002F\u002Fdocs.vapi.ai\u002Fphone-numbers\u002Fphone-number-hooks)\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":41,"body":45},{"name":4,"description":6,"license":26,"compatibility":42,"metadata":43},"Requires internet access and a Vapi API key (VAPI_API_KEY).",{"author":8,"version":44},"1.0",{"type":46,"children":47},"root",[48,57,63,95,102,107,270,276,432,438,582,588,732,738,743,859,864,978,984,989,1227,1233,1516,1522,1553,1559,1599,1605,1624,1630,1664,1670,1682,1692,1747,1761],{"type":49,"tag":50,"props":51,"children":53},"element","h1",{"id":52},"vapi-phone-number-setup",[54],{"type":55,"value":56},"text","Vapi Phone Number Setup",{"type":49,"tag":58,"props":59,"children":60},"p",{},[61],{"type":55,"value":62},"Import phone numbers from Twilio, Vonage, or Telnyx, or use Vapi's built-in numbers to connect voice assistants to real phone calls.",{"type":49,"tag":64,"props":65,"children":66},"blockquote",{},[67],{"type":49,"tag":58,"props":68,"children":69},{},[70,76,78,85,87,93],{"type":49,"tag":71,"props":72,"children":73},"strong",{},[74],{"type":55,"value":75},"Setup:",{"type":55,"value":77}," Ensure ",{"type":49,"tag":79,"props":80,"children":82},"code",{"className":81},[],[83],{"type":55,"value":84},"VAPI_API_KEY",{"type":55,"value":86}," is set. See the ",{"type":49,"tag":79,"props":88,"children":90},{"className":89},[],[91],{"type":55,"value":92},"setup-api-key",{"type":55,"value":94}," skill if needed.",{"type":49,"tag":96,"props":97,"children":99},"h2",{"id":98},"quick-start-buy-a-vapi-number",[100],{"type":55,"value":101},"Quick Start — Buy a Vapi Number",{"type":49,"tag":58,"props":103,"children":104},{},[105],{"type":55,"value":106},"Vapi provides free phone numbers for testing with daily call limits.",{"type":49,"tag":108,"props":109,"children":114},"pre",{"className":110,"code":111,"language":112,"meta":113,"style":113},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fphone-number \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"provider\": \"vapi\",\n    \"assistantId\": \"your-assistant-id\",\n    \"name\": \"Main Support Line\"\n  }'\n","bash","",[115],{"type":49,"tag":79,"props":116,"children":117},{"__ignoreMap":113},[118,152,186,211,230,239,248,256],{"type":49,"tag":119,"props":120,"children":123},"span",{"class":121,"line":122},"line",1,[124,130,136,141,146],{"type":49,"tag":119,"props":125,"children":127},{"style":126},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[128],{"type":55,"value":129},"curl",{"type":49,"tag":119,"props":131,"children":133},{"style":132},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[134],{"type":55,"value":135}," -X",{"type":49,"tag":119,"props":137,"children":138},{"style":132},[139],{"type":55,"value":140}," POST",{"type":49,"tag":119,"props":142,"children":143},{"style":132},[144],{"type":55,"value":145}," https:\u002F\u002Fapi.vapi.ai\u002Fphone-number",{"type":49,"tag":119,"props":147,"children":149},{"style":148},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[150],{"type":55,"value":151}," \\\n",{"type":49,"tag":119,"props":153,"children":155},{"class":121,"line":154},2,[156,161,167,172,177,182],{"type":49,"tag":119,"props":157,"children":158},{"style":132},[159],{"type":55,"value":160},"  -H",{"type":49,"tag":119,"props":162,"children":164},{"style":163},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[165],{"type":55,"value":166}," \"",{"type":49,"tag":119,"props":168,"children":169},{"style":132},[170],{"type":55,"value":171},"Authorization: Bearer ",{"type":49,"tag":119,"props":173,"children":174},{"style":148},[175],{"type":55,"value":176},"$VAPI_API_KEY",{"type":49,"tag":119,"props":178,"children":179},{"style":163},[180],{"type":55,"value":181},"\"",{"type":49,"tag":119,"props":183,"children":184},{"style":148},[185],{"type":55,"value":151},{"type":49,"tag":119,"props":187,"children":189},{"class":121,"line":188},3,[190,194,198,203,207],{"type":49,"tag":119,"props":191,"children":192},{"style":132},[193],{"type":55,"value":160},{"type":49,"tag":119,"props":195,"children":196},{"style":163},[197],{"type":55,"value":166},{"type":49,"tag":119,"props":199,"children":200},{"style":132},[201],{"type":55,"value":202},"Content-Type: application\u002Fjson",{"type":49,"tag":119,"props":204,"children":205},{"style":163},[206],{"type":55,"value":181},{"type":49,"tag":119,"props":208,"children":209},{"style":148},[210],{"type":55,"value":151},{"type":49,"tag":119,"props":212,"children":214},{"class":121,"line":213},4,[215,220,225],{"type":49,"tag":119,"props":216,"children":217},{"style":132},[218],{"type":55,"value":219},"  -d",{"type":49,"tag":119,"props":221,"children":222},{"style":163},[223],{"type":55,"value":224}," '",{"type":49,"tag":119,"props":226,"children":227},{"style":132},[228],{"type":55,"value":229},"{\n",{"type":49,"tag":119,"props":231,"children":233},{"class":121,"line":232},5,[234],{"type":49,"tag":119,"props":235,"children":236},{"style":132},[237],{"type":55,"value":238},"    \"provider\": \"vapi\",\n",{"type":49,"tag":119,"props":240,"children":242},{"class":121,"line":241},6,[243],{"type":49,"tag":119,"props":244,"children":245},{"style":132},[246],{"type":55,"value":247},"    \"assistantId\": \"your-assistant-id\",\n",{"type":49,"tag":119,"props":249,"children":250},{"class":121,"line":27},[251],{"type":49,"tag":119,"props":252,"children":253},{"style":132},[254],{"type":55,"value":255},"    \"name\": \"Main Support Line\"\n",{"type":49,"tag":119,"props":257,"children":259},{"class":121,"line":258},8,[260,265],{"type":49,"tag":119,"props":261,"children":262},{"style":132},[263],{"type":55,"value":264},"  }",{"type":49,"tag":119,"props":266,"children":267},{"style":163},[268],{"type":55,"value":269},"'\n",{"type":49,"tag":96,"props":271,"children":273},{"id":272},"import-from-twilio",[274],{"type":55,"value":275},"Import from Twilio",{"type":49,"tag":108,"props":277,"children":279},{"className":110,"code":278,"language":112,"meta":113,"style":113},"curl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fphone-number \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"provider\": \"twilio\",\n    \"number\": \"+11234567890\",\n    \"twilioAccountSid\": \"your-twilio-account-sid\",\n    \"twilioAuthToken\": \"your-twilio-auth-token\",\n    \"assistantId\": \"your-assistant-id\",\n    \"name\": \"Twilio Support Line\"\n  }'\n",[280],{"type":49,"tag":79,"props":281,"children":282},{"__ignoreMap":113},[283,306,333,356,371,379,387,395,403,411,420],{"type":49,"tag":119,"props":284,"children":285},{"class":121,"line":122},[286,290,294,298,302],{"type":49,"tag":119,"props":287,"children":288},{"style":126},[289],{"type":55,"value":129},{"type":49,"tag":119,"props":291,"children":292},{"style":132},[293],{"type":55,"value":135},{"type":49,"tag":119,"props":295,"children":296},{"style":132},[297],{"type":55,"value":140},{"type":49,"tag":119,"props":299,"children":300},{"style":132},[301],{"type":55,"value":145},{"type":49,"tag":119,"props":303,"children":304},{"style":148},[305],{"type":55,"value":151},{"type":49,"tag":119,"props":307,"children":308},{"class":121,"line":154},[309,313,317,321,325,329],{"type":49,"tag":119,"props":310,"children":311},{"style":132},[312],{"type":55,"value":160},{"type":49,"tag":119,"props":314,"children":315},{"style":163},[316],{"type":55,"value":166},{"type":49,"tag":119,"props":318,"children":319},{"style":132},[320],{"type":55,"value":171},{"type":49,"tag":119,"props":322,"children":323},{"style":148},[324],{"type":55,"value":176},{"type":49,"tag":119,"props":326,"children":327},{"style":163},[328],{"type":55,"value":181},{"type":49,"tag":119,"props":330,"children":331},{"style":148},[332],{"type":55,"value":151},{"type":49,"tag":119,"props":334,"children":335},{"class":121,"line":188},[336,340,344,348,352],{"type":49,"tag":119,"props":337,"children":338},{"style":132},[339],{"type":55,"value":160},{"type":49,"tag":119,"props":341,"children":342},{"style":163},[343],{"type":55,"value":166},{"type":49,"tag":119,"props":345,"children":346},{"style":132},[347],{"type":55,"value":202},{"type":49,"tag":119,"props":349,"children":350},{"style":163},[351],{"type":55,"value":181},{"type":49,"tag":119,"props":353,"children":354},{"style":148},[355],{"type":55,"value":151},{"type":49,"tag":119,"props":357,"children":358},{"class":121,"line":213},[359,363,367],{"type":49,"tag":119,"props":360,"children":361},{"style":132},[362],{"type":55,"value":219},{"type":49,"tag":119,"props":364,"children":365},{"style":163},[366],{"type":55,"value":224},{"type":49,"tag":119,"props":368,"children":369},{"style":132},[370],{"type":55,"value":229},{"type":49,"tag":119,"props":372,"children":373},{"class":121,"line":232},[374],{"type":49,"tag":119,"props":375,"children":376},{"style":132},[377],{"type":55,"value":378},"    \"provider\": \"twilio\",\n",{"type":49,"tag":119,"props":380,"children":381},{"class":121,"line":241},[382],{"type":49,"tag":119,"props":383,"children":384},{"style":132},[385],{"type":55,"value":386},"    \"number\": \"+11234567890\",\n",{"type":49,"tag":119,"props":388,"children":389},{"class":121,"line":27},[390],{"type":49,"tag":119,"props":391,"children":392},{"style":132},[393],{"type":55,"value":394},"    \"twilioAccountSid\": \"your-twilio-account-sid\",\n",{"type":49,"tag":119,"props":396,"children":397},{"class":121,"line":258},[398],{"type":49,"tag":119,"props":399,"children":400},{"style":132},[401],{"type":55,"value":402},"    \"twilioAuthToken\": \"your-twilio-auth-token\",\n",{"type":49,"tag":119,"props":404,"children":406},{"class":121,"line":405},9,[407],{"type":49,"tag":119,"props":408,"children":409},{"style":132},[410],{"type":55,"value":247},{"type":49,"tag":119,"props":412,"children":414},{"class":121,"line":413},10,[415],{"type":49,"tag":119,"props":416,"children":417},{"style":132},[418],{"type":55,"value":419},"    \"name\": \"Twilio Support Line\"\n",{"type":49,"tag":119,"props":421,"children":423},{"class":121,"line":422},11,[424,428],{"type":49,"tag":119,"props":425,"children":426},{"style":132},[427],{"type":55,"value":264},{"type":49,"tag":119,"props":429,"children":430},{"style":163},[431],{"type":55,"value":269},{"type":49,"tag":96,"props":433,"children":435},{"id":434},"import-from-vonage",[436],{"type":55,"value":437},"Import from Vonage",{"type":49,"tag":108,"props":439,"children":441},{"className":110,"code":440,"language":112,"meta":113,"style":113},"curl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fphone-number \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"provider\": \"vonage\",\n    \"number\": \"+11234567890\",\n    \"credentialId\": \"your-vonage-credential-id\",\n    \"assistantId\": \"your-assistant-id\",\n    \"name\": \"Vonage Support Line\"\n  }'\n",[442],{"type":49,"tag":79,"props":443,"children":444},{"__ignoreMap":113},[445,468,495,518,533,541,548,556,563,571],{"type":49,"tag":119,"props":446,"children":447},{"class":121,"line":122},[448,452,456,460,464],{"type":49,"tag":119,"props":449,"children":450},{"style":126},[451],{"type":55,"value":129},{"type":49,"tag":119,"props":453,"children":454},{"style":132},[455],{"type":55,"value":135},{"type":49,"tag":119,"props":457,"children":458},{"style":132},[459],{"type":55,"value":140},{"type":49,"tag":119,"props":461,"children":462},{"style":132},[463],{"type":55,"value":145},{"type":49,"tag":119,"props":465,"children":466},{"style":148},[467],{"type":55,"value":151},{"type":49,"tag":119,"props":469,"children":470},{"class":121,"line":154},[471,475,479,483,487,491],{"type":49,"tag":119,"props":472,"children":473},{"style":132},[474],{"type":55,"value":160},{"type":49,"tag":119,"props":476,"children":477},{"style":163},[478],{"type":55,"value":166},{"type":49,"tag":119,"props":480,"children":481},{"style":132},[482],{"type":55,"value":171},{"type":49,"tag":119,"props":484,"children":485},{"style":148},[486],{"type":55,"value":176},{"type":49,"tag":119,"props":488,"children":489},{"style":163},[490],{"type":55,"value":181},{"type":49,"tag":119,"props":492,"children":493},{"style":148},[494],{"type":55,"value":151},{"type":49,"tag":119,"props":496,"children":497},{"class":121,"line":188},[498,502,506,510,514],{"type":49,"tag":119,"props":499,"children":500},{"style":132},[501],{"type":55,"value":160},{"type":49,"tag":119,"props":503,"children":504},{"style":163},[505],{"type":55,"value":166},{"type":49,"tag":119,"props":507,"children":508},{"style":132},[509],{"type":55,"value":202},{"type":49,"tag":119,"props":511,"children":512},{"style":163},[513],{"type":55,"value":181},{"type":49,"tag":119,"props":515,"children":516},{"style":148},[517],{"type":55,"value":151},{"type":49,"tag":119,"props":519,"children":520},{"class":121,"line":213},[521,525,529],{"type":49,"tag":119,"props":522,"children":523},{"style":132},[524],{"type":55,"value":219},{"type":49,"tag":119,"props":526,"children":527},{"style":163},[528],{"type":55,"value":224},{"type":49,"tag":119,"props":530,"children":531},{"style":132},[532],{"type":55,"value":229},{"type":49,"tag":119,"props":534,"children":535},{"class":121,"line":232},[536],{"type":49,"tag":119,"props":537,"children":538},{"style":132},[539],{"type":55,"value":540},"    \"provider\": \"vonage\",\n",{"type":49,"tag":119,"props":542,"children":543},{"class":121,"line":241},[544],{"type":49,"tag":119,"props":545,"children":546},{"style":132},[547],{"type":55,"value":386},{"type":49,"tag":119,"props":549,"children":550},{"class":121,"line":27},[551],{"type":49,"tag":119,"props":552,"children":553},{"style":132},[554],{"type":55,"value":555},"    \"credentialId\": \"your-vonage-credential-id\",\n",{"type":49,"tag":119,"props":557,"children":558},{"class":121,"line":258},[559],{"type":49,"tag":119,"props":560,"children":561},{"style":132},[562],{"type":55,"value":247},{"type":49,"tag":119,"props":564,"children":565},{"class":121,"line":405},[566],{"type":49,"tag":119,"props":567,"children":568},{"style":132},[569],{"type":55,"value":570},"    \"name\": \"Vonage Support Line\"\n",{"type":49,"tag":119,"props":572,"children":573},{"class":121,"line":413},[574,578],{"type":49,"tag":119,"props":575,"children":576},{"style":132},[577],{"type":55,"value":264},{"type":49,"tag":119,"props":579,"children":580},{"style":163},[581],{"type":55,"value":269},{"type":49,"tag":96,"props":583,"children":585},{"id":584},"import-from-telnyx",[586],{"type":55,"value":587},"Import from Telnyx",{"type":49,"tag":108,"props":589,"children":591},{"className":110,"code":590,"language":112,"meta":113,"style":113},"curl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fphone-number \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"provider\": \"telnyx\",\n    \"number\": \"+11234567890\",\n    \"credentialId\": \"your-telnyx-credential-id\",\n    \"assistantId\": \"your-assistant-id\",\n    \"name\": \"Telnyx Support Line\"\n  }'\n",[592],{"type":49,"tag":79,"props":593,"children":594},{"__ignoreMap":113},[595,618,645,668,683,691,698,706,713,721],{"type":49,"tag":119,"props":596,"children":597},{"class":121,"line":122},[598,602,606,610,614],{"type":49,"tag":119,"props":599,"children":600},{"style":126},[601],{"type":55,"value":129},{"type":49,"tag":119,"props":603,"children":604},{"style":132},[605],{"type":55,"value":135},{"type":49,"tag":119,"props":607,"children":608},{"style":132},[609],{"type":55,"value":140},{"type":49,"tag":119,"props":611,"children":612},{"style":132},[613],{"type":55,"value":145},{"type":49,"tag":119,"props":615,"children":616},{"style":148},[617],{"type":55,"value":151},{"type":49,"tag":119,"props":619,"children":620},{"class":121,"line":154},[621,625,629,633,637,641],{"type":49,"tag":119,"props":622,"children":623},{"style":132},[624],{"type":55,"value":160},{"type":49,"tag":119,"props":626,"children":627},{"style":163},[628],{"type":55,"value":166},{"type":49,"tag":119,"props":630,"children":631},{"style":132},[632],{"type":55,"value":171},{"type":49,"tag":119,"props":634,"children":635},{"style":148},[636],{"type":55,"value":176},{"type":49,"tag":119,"props":638,"children":639},{"style":163},[640],{"type":55,"value":181},{"type":49,"tag":119,"props":642,"children":643},{"style":148},[644],{"type":55,"value":151},{"type":49,"tag":119,"props":646,"children":647},{"class":121,"line":188},[648,652,656,660,664],{"type":49,"tag":119,"props":649,"children":650},{"style":132},[651],{"type":55,"value":160},{"type":49,"tag":119,"props":653,"children":654},{"style":163},[655],{"type":55,"value":166},{"type":49,"tag":119,"props":657,"children":658},{"style":132},[659],{"type":55,"value":202},{"type":49,"tag":119,"props":661,"children":662},{"style":163},[663],{"type":55,"value":181},{"type":49,"tag":119,"props":665,"children":666},{"style":148},[667],{"type":55,"value":151},{"type":49,"tag":119,"props":669,"children":670},{"class":121,"line":213},[671,675,679],{"type":49,"tag":119,"props":672,"children":673},{"style":132},[674],{"type":55,"value":219},{"type":49,"tag":119,"props":676,"children":677},{"style":163},[678],{"type":55,"value":224},{"type":49,"tag":119,"props":680,"children":681},{"style":132},[682],{"type":55,"value":229},{"type":49,"tag":119,"props":684,"children":685},{"class":121,"line":232},[686],{"type":49,"tag":119,"props":687,"children":688},{"style":132},[689],{"type":55,"value":690},"    \"provider\": \"telnyx\",\n",{"type":49,"tag":119,"props":692,"children":693},{"class":121,"line":241},[694],{"type":49,"tag":119,"props":695,"children":696},{"style":132},[697],{"type":55,"value":386},{"type":49,"tag":119,"props":699,"children":700},{"class":121,"line":27},[701],{"type":49,"tag":119,"props":702,"children":703},{"style":132},[704],{"type":55,"value":705},"    \"credentialId\": \"your-telnyx-credential-id\",\n",{"type":49,"tag":119,"props":707,"children":708},{"class":121,"line":258},[709],{"type":49,"tag":119,"props":710,"children":711},{"style":132},[712],{"type":55,"value":247},{"type":49,"tag":119,"props":714,"children":715},{"class":121,"line":405},[716],{"type":49,"tag":119,"props":717,"children":718},{"style":132},[719],{"type":55,"value":720},"    \"name\": \"Telnyx Support Line\"\n",{"type":49,"tag":119,"props":722,"children":723},{"class":121,"line":413},[724,728],{"type":49,"tag":119,"props":725,"children":726},{"style":132},[727],{"type":55,"value":264},{"type":49,"tag":119,"props":729,"children":730},{"style":163},[731],{"type":55,"value":269},{"type":49,"tag":96,"props":733,"children":735},{"id":734},"assign-an-assistant",[736],{"type":55,"value":737},"Assign an Assistant",{"type":49,"tag":58,"props":739,"children":740},{},[741],{"type":55,"value":742},"Every phone number can be linked to an assistant or squad for inbound calls:",{"type":49,"tag":108,"props":744,"children":746},{"className":110,"code":745,"language":112,"meta":113,"style":113},"curl -X PATCH https:\u002F\u002Fapi.vapi.ai\u002Fphone-number\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"assistantId\": \"your-assistant-id\"\n  }'\n",[747],{"type":49,"tag":79,"props":748,"children":749},{"__ignoreMap":113},[750,775,802,825,840,848],{"type":49,"tag":119,"props":751,"children":752},{"class":121,"line":122},[753,757,761,766,771],{"type":49,"tag":119,"props":754,"children":755},{"style":126},[756],{"type":55,"value":129},{"type":49,"tag":119,"props":758,"children":759},{"style":132},[760],{"type":55,"value":135},{"type":49,"tag":119,"props":762,"children":763},{"style":132},[764],{"type":55,"value":765}," PATCH",{"type":49,"tag":119,"props":767,"children":768},{"style":132},[769],{"type":55,"value":770}," https:\u002F\u002Fapi.vapi.ai\u002Fphone-number\u002F{id}",{"type":49,"tag":119,"props":772,"children":773},{"style":148},[774],{"type":55,"value":151},{"type":49,"tag":119,"props":776,"children":777},{"class":121,"line":154},[778,782,786,790,794,798],{"type":49,"tag":119,"props":779,"children":780},{"style":132},[781],{"type":55,"value":160},{"type":49,"tag":119,"props":783,"children":784},{"style":163},[785],{"type":55,"value":166},{"type":49,"tag":119,"props":787,"children":788},{"style":132},[789],{"type":55,"value":171},{"type":49,"tag":119,"props":791,"children":792},{"style":148},[793],{"type":55,"value":176},{"type":49,"tag":119,"props":795,"children":796},{"style":163},[797],{"type":55,"value":181},{"type":49,"tag":119,"props":799,"children":800},{"style":148},[801],{"type":55,"value":151},{"type":49,"tag":119,"props":803,"children":804},{"class":121,"line":188},[805,809,813,817,821],{"type":49,"tag":119,"props":806,"children":807},{"style":132},[808],{"type":55,"value":160},{"type":49,"tag":119,"props":810,"children":811},{"style":163},[812],{"type":55,"value":166},{"type":49,"tag":119,"props":814,"children":815},{"style":132},[816],{"type":55,"value":202},{"type":49,"tag":119,"props":818,"children":819},{"style":163},[820],{"type":55,"value":181},{"type":49,"tag":119,"props":822,"children":823},{"style":148},[824],{"type":55,"value":151},{"type":49,"tag":119,"props":826,"children":827},{"class":121,"line":213},[828,832,836],{"type":49,"tag":119,"props":829,"children":830},{"style":132},[831],{"type":55,"value":219},{"type":49,"tag":119,"props":833,"children":834},{"style":163},[835],{"type":55,"value":224},{"type":49,"tag":119,"props":837,"children":838},{"style":132},[839],{"type":55,"value":229},{"type":49,"tag":119,"props":841,"children":842},{"class":121,"line":232},[843],{"type":49,"tag":119,"props":844,"children":845},{"style":132},[846],{"type":55,"value":847},"    \"assistantId\": \"your-assistant-id\"\n",{"type":49,"tag":119,"props":849,"children":850},{"class":121,"line":241},[851,855],{"type":49,"tag":119,"props":852,"children":853},{"style":132},[854],{"type":55,"value":264},{"type":49,"tag":119,"props":856,"children":857},{"style":163},[858],{"type":55,"value":269},{"type":49,"tag":58,"props":860,"children":861},{},[862],{"type":55,"value":863},"Or assign a squad:",{"type":49,"tag":108,"props":865,"children":867},{"className":110,"code":866,"language":112,"meta":113,"style":113},"curl -X PATCH https:\u002F\u002Fapi.vapi.ai\u002Fphone-number\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"squadId\": \"your-squad-id\"\n  }'\n",[868],{"type":49,"tag":79,"props":869,"children":870},{"__ignoreMap":113},[871,894,921,944,959,967],{"type":49,"tag":119,"props":872,"children":873},{"class":121,"line":122},[874,878,882,886,890],{"type":49,"tag":119,"props":875,"children":876},{"style":126},[877],{"type":55,"value":129},{"type":49,"tag":119,"props":879,"children":880},{"style":132},[881],{"type":55,"value":135},{"type":49,"tag":119,"props":883,"children":884},{"style":132},[885],{"type":55,"value":765},{"type":49,"tag":119,"props":887,"children":888},{"style":132},[889],{"type":55,"value":770},{"type":49,"tag":119,"props":891,"children":892},{"style":148},[893],{"type":55,"value":151},{"type":49,"tag":119,"props":895,"children":896},{"class":121,"line":154},[897,901,905,909,913,917],{"type":49,"tag":119,"props":898,"children":899},{"style":132},[900],{"type":55,"value":160},{"type":49,"tag":119,"props":902,"children":903},{"style":163},[904],{"type":55,"value":166},{"type":49,"tag":119,"props":906,"children":907},{"style":132},[908],{"type":55,"value":171},{"type":49,"tag":119,"props":910,"children":911},{"style":148},[912],{"type":55,"value":176},{"type":49,"tag":119,"props":914,"children":915},{"style":163},[916],{"type":55,"value":181},{"type":49,"tag":119,"props":918,"children":919},{"style":148},[920],{"type":55,"value":151},{"type":49,"tag":119,"props":922,"children":923},{"class":121,"line":188},[924,928,932,936,940],{"type":49,"tag":119,"props":925,"children":926},{"style":132},[927],{"type":55,"value":160},{"type":49,"tag":119,"props":929,"children":930},{"style":163},[931],{"type":55,"value":166},{"type":49,"tag":119,"props":933,"children":934},{"style":132},[935],{"type":55,"value":202},{"type":49,"tag":119,"props":937,"children":938},{"style":163},[939],{"type":55,"value":181},{"type":49,"tag":119,"props":941,"children":942},{"style":148},[943],{"type":55,"value":151},{"type":49,"tag":119,"props":945,"children":946},{"class":121,"line":213},[947,951,955],{"type":49,"tag":119,"props":948,"children":949},{"style":132},[950],{"type":55,"value":219},{"type":49,"tag":119,"props":952,"children":953},{"style":163},[954],{"type":55,"value":224},{"type":49,"tag":119,"props":956,"children":957},{"style":132},[958],{"type":55,"value":229},{"type":49,"tag":119,"props":960,"children":961},{"class":121,"line":232},[962],{"type":49,"tag":119,"props":963,"children":964},{"style":132},[965],{"type":55,"value":966},"    \"squadId\": \"your-squad-id\"\n",{"type":49,"tag":119,"props":968,"children":969},{"class":121,"line":241},[970,974],{"type":49,"tag":119,"props":971,"children":972},{"style":132},[973],{"type":55,"value":264},{"type":49,"tag":119,"props":975,"children":976},{"style":163},[977],{"type":55,"value":269},{"type":49,"tag":96,"props":979,"children":981},{"id":980},"phone-number-hooks",[982],{"type":55,"value":983},"Phone Number Hooks",{"type":49,"tag":58,"props":985,"children":986},{},[987],{"type":55,"value":988},"Configure automated actions when calls come in:",{"type":49,"tag":108,"props":990,"children":994},{"className":991,"code":992,"language":993,"meta":113,"style":113},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"hooks\": [\n    {\n      \"on\": \"call.ringing\",\n      \"do\": [\n        {\n          \"type\": \"say\",\n          \"exact\": \"Please hold while we connect you.\"\n        }\n      ]\n    }\n  ]\n}\n","json",[995],{"type":49,"tag":79,"props":996,"children":997},{"__ignoreMap":113},[998,1005,1033,1041,1080,1104,1112,1151,1185,1193,1201,1209,1218],{"type":49,"tag":119,"props":999,"children":1000},{"class":121,"line":122},[1001],{"type":49,"tag":119,"props":1002,"children":1003},{"style":163},[1004],{"type":55,"value":229},{"type":49,"tag":119,"props":1006,"children":1007},{"class":121,"line":154},[1008,1013,1019,1023,1028],{"type":49,"tag":119,"props":1009,"children":1010},{"style":163},[1011],{"type":55,"value":1012},"  \"",{"type":49,"tag":119,"props":1014,"children":1016},{"style":1015},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1017],{"type":55,"value":1018},"hooks",{"type":49,"tag":119,"props":1020,"children":1021},{"style":163},[1022],{"type":55,"value":181},{"type":49,"tag":119,"props":1024,"children":1025},{"style":163},[1026],{"type":55,"value":1027},":",{"type":49,"tag":119,"props":1029,"children":1030},{"style":163},[1031],{"type":55,"value":1032}," [\n",{"type":49,"tag":119,"props":1034,"children":1035},{"class":121,"line":188},[1036],{"type":49,"tag":119,"props":1037,"children":1038},{"style":163},[1039],{"type":55,"value":1040},"    {\n",{"type":49,"tag":119,"props":1042,"children":1043},{"class":121,"line":213},[1044,1049,1054,1058,1062,1066,1071,1075],{"type":49,"tag":119,"props":1045,"children":1046},{"style":163},[1047],{"type":55,"value":1048},"      \"",{"type":49,"tag":119,"props":1050,"children":1051},{"style":126},[1052],{"type":55,"value":1053},"on",{"type":49,"tag":119,"props":1055,"children":1056},{"style":163},[1057],{"type":55,"value":181},{"type":49,"tag":119,"props":1059,"children":1060},{"style":163},[1061],{"type":55,"value":1027},{"type":49,"tag":119,"props":1063,"children":1064},{"style":163},[1065],{"type":55,"value":166},{"type":49,"tag":119,"props":1067,"children":1068},{"style":132},[1069],{"type":55,"value":1070},"call.ringing",{"type":49,"tag":119,"props":1072,"children":1073},{"style":163},[1074],{"type":55,"value":181},{"type":49,"tag":119,"props":1076,"children":1077},{"style":163},[1078],{"type":55,"value":1079},",\n",{"type":49,"tag":119,"props":1081,"children":1082},{"class":121,"line":232},[1083,1087,1092,1096,1100],{"type":49,"tag":119,"props":1084,"children":1085},{"style":163},[1086],{"type":55,"value":1048},{"type":49,"tag":119,"props":1088,"children":1089},{"style":126},[1090],{"type":55,"value":1091},"do",{"type":49,"tag":119,"props":1093,"children":1094},{"style":163},[1095],{"type":55,"value":181},{"type":49,"tag":119,"props":1097,"children":1098},{"style":163},[1099],{"type":55,"value":1027},{"type":49,"tag":119,"props":1101,"children":1102},{"style":163},[1103],{"type":55,"value":1032},{"type":49,"tag":119,"props":1105,"children":1106},{"class":121,"line":241},[1107],{"type":49,"tag":119,"props":1108,"children":1109},{"style":163},[1110],{"type":55,"value":1111},"        {\n",{"type":49,"tag":119,"props":1113,"children":1114},{"class":121,"line":27},[1115,1120,1126,1130,1134,1138,1143,1147],{"type":49,"tag":119,"props":1116,"children":1117},{"style":163},[1118],{"type":55,"value":1119},"          \"",{"type":49,"tag":119,"props":1121,"children":1123},{"style":1122},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1124],{"type":55,"value":1125},"type",{"type":49,"tag":119,"props":1127,"children":1128},{"style":163},[1129],{"type":55,"value":181},{"type":49,"tag":119,"props":1131,"children":1132},{"style":163},[1133],{"type":55,"value":1027},{"type":49,"tag":119,"props":1135,"children":1136},{"style":163},[1137],{"type":55,"value":166},{"type":49,"tag":119,"props":1139,"children":1140},{"style":132},[1141],{"type":55,"value":1142},"say",{"type":49,"tag":119,"props":1144,"children":1145},{"style":163},[1146],{"type":55,"value":181},{"type":49,"tag":119,"props":1148,"children":1149},{"style":163},[1150],{"type":55,"value":1079},{"type":49,"tag":119,"props":1152,"children":1153},{"class":121,"line":258},[1154,1158,1163,1167,1171,1175,1180],{"type":49,"tag":119,"props":1155,"children":1156},{"style":163},[1157],{"type":55,"value":1119},{"type":49,"tag":119,"props":1159,"children":1160},{"style":1122},[1161],{"type":55,"value":1162},"exact",{"type":49,"tag":119,"props":1164,"children":1165},{"style":163},[1166],{"type":55,"value":181},{"type":49,"tag":119,"props":1168,"children":1169},{"style":163},[1170],{"type":55,"value":1027},{"type":49,"tag":119,"props":1172,"children":1173},{"style":163},[1174],{"type":55,"value":166},{"type":49,"tag":119,"props":1176,"children":1177},{"style":132},[1178],{"type":55,"value":1179},"Please hold while we connect you.",{"type":49,"tag":119,"props":1181,"children":1182},{"style":163},[1183],{"type":55,"value":1184},"\"\n",{"type":49,"tag":119,"props":1186,"children":1187},{"class":121,"line":405},[1188],{"type":49,"tag":119,"props":1189,"children":1190},{"style":163},[1191],{"type":55,"value":1192},"        }\n",{"type":49,"tag":119,"props":1194,"children":1195},{"class":121,"line":413},[1196],{"type":49,"tag":119,"props":1197,"children":1198},{"style":163},[1199],{"type":55,"value":1200},"      ]\n",{"type":49,"tag":119,"props":1202,"children":1203},{"class":121,"line":422},[1204],{"type":49,"tag":119,"props":1205,"children":1206},{"style":163},[1207],{"type":55,"value":1208},"    }\n",{"type":49,"tag":119,"props":1210,"children":1212},{"class":121,"line":1211},12,[1213],{"type":49,"tag":119,"props":1214,"children":1215},{"style":163},[1216],{"type":55,"value":1217},"  ]\n",{"type":49,"tag":119,"props":1219,"children":1221},{"class":121,"line":1220},13,[1222],{"type":49,"tag":119,"props":1223,"children":1224},{"style":163},[1225],{"type":55,"value":1226},"}\n",{"type":49,"tag":96,"props":1228,"children":1230},{"id":1229},"managing-phone-numbers",[1231],{"type":55,"value":1232},"Managing Phone Numbers",{"type":49,"tag":108,"props":1234,"children":1236},{"className":110,"code":1235,"language":112,"meta":113,"style":113},"# List all phone numbers\ncurl https:\u002F\u002Fapi.vapi.ai\u002Fphone-number \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n\n# Get a phone number\ncurl https:\u002F\u002Fapi.vapi.ai\u002Fphone-number\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n\n# Update a phone number\ncurl -X PATCH https:\u002F\u002Fapi.vapi.ai\u002Fphone-number\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"name\": \"Updated Name\"}'\n\n# Delete a phone number\ncurl -X DELETE https:\u002F\u002Fapi.vapi.ai\u002Fphone-number\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n",[1237],{"type":49,"tag":79,"props":1238,"children":1239},{"__ignoreMap":113},[1240,1249,1264,1287,1296,1304,1319,1342,1349,1357,1380,1407,1430,1450,1458,1467,1492],{"type":49,"tag":119,"props":1241,"children":1242},{"class":121,"line":122},[1243],{"type":49,"tag":119,"props":1244,"children":1246},{"style":1245},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1247],{"type":55,"value":1248},"# List all phone numbers\n",{"type":49,"tag":119,"props":1250,"children":1251},{"class":121,"line":154},[1252,1256,1260],{"type":49,"tag":119,"props":1253,"children":1254},{"style":126},[1255],{"type":55,"value":129},{"type":49,"tag":119,"props":1257,"children":1258},{"style":132},[1259],{"type":55,"value":145},{"type":49,"tag":119,"props":1261,"children":1262},{"style":148},[1263],{"type":55,"value":151},{"type":49,"tag":119,"props":1265,"children":1266},{"class":121,"line":188},[1267,1271,1275,1279,1283],{"type":49,"tag":119,"props":1268,"children":1269},{"style":132},[1270],{"type":55,"value":160},{"type":49,"tag":119,"props":1272,"children":1273},{"style":163},[1274],{"type":55,"value":166},{"type":49,"tag":119,"props":1276,"children":1277},{"style":132},[1278],{"type":55,"value":171},{"type":49,"tag":119,"props":1280,"children":1281},{"style":148},[1282],{"type":55,"value":176},{"type":49,"tag":119,"props":1284,"children":1285},{"style":163},[1286],{"type":55,"value":1184},{"type":49,"tag":119,"props":1288,"children":1289},{"class":121,"line":213},[1290],{"type":49,"tag":119,"props":1291,"children":1293},{"emptyLinePlaceholder":1292},true,[1294],{"type":55,"value":1295},"\n",{"type":49,"tag":119,"props":1297,"children":1298},{"class":121,"line":232},[1299],{"type":49,"tag":119,"props":1300,"children":1301},{"style":1245},[1302],{"type":55,"value":1303},"# Get a phone number\n",{"type":49,"tag":119,"props":1305,"children":1306},{"class":121,"line":241},[1307,1311,1315],{"type":49,"tag":119,"props":1308,"children":1309},{"style":126},[1310],{"type":55,"value":129},{"type":49,"tag":119,"props":1312,"children":1313},{"style":132},[1314],{"type":55,"value":770},{"type":49,"tag":119,"props":1316,"children":1317},{"style":148},[1318],{"type":55,"value":151},{"type":49,"tag":119,"props":1320,"children":1321},{"class":121,"line":27},[1322,1326,1330,1334,1338],{"type":49,"tag":119,"props":1323,"children":1324},{"style":132},[1325],{"type":55,"value":160},{"type":49,"tag":119,"props":1327,"children":1328},{"style":163},[1329],{"type":55,"value":166},{"type":49,"tag":119,"props":1331,"children":1332},{"style":132},[1333],{"type":55,"value":171},{"type":49,"tag":119,"props":1335,"children":1336},{"style":148},[1337],{"type":55,"value":176},{"type":49,"tag":119,"props":1339,"children":1340},{"style":163},[1341],{"type":55,"value":1184},{"type":49,"tag":119,"props":1343,"children":1344},{"class":121,"line":258},[1345],{"type":49,"tag":119,"props":1346,"children":1347},{"emptyLinePlaceholder":1292},[1348],{"type":55,"value":1295},{"type":49,"tag":119,"props":1350,"children":1351},{"class":121,"line":405},[1352],{"type":49,"tag":119,"props":1353,"children":1354},{"style":1245},[1355],{"type":55,"value":1356},"# Update a phone number\n",{"type":49,"tag":119,"props":1358,"children":1359},{"class":121,"line":413},[1360,1364,1368,1372,1376],{"type":49,"tag":119,"props":1361,"children":1362},{"style":126},[1363],{"type":55,"value":129},{"type":49,"tag":119,"props":1365,"children":1366},{"style":132},[1367],{"type":55,"value":135},{"type":49,"tag":119,"props":1369,"children":1370},{"style":132},[1371],{"type":55,"value":765},{"type":49,"tag":119,"props":1373,"children":1374},{"style":132},[1375],{"type":55,"value":770},{"type":49,"tag":119,"props":1377,"children":1378},{"style":148},[1379],{"type":55,"value":151},{"type":49,"tag":119,"props":1381,"children":1382},{"class":121,"line":422},[1383,1387,1391,1395,1399,1403],{"type":49,"tag":119,"props":1384,"children":1385},{"style":132},[1386],{"type":55,"value":160},{"type":49,"tag":119,"props":1388,"children":1389},{"style":163},[1390],{"type":55,"value":166},{"type":49,"tag":119,"props":1392,"children":1393},{"style":132},[1394],{"type":55,"value":171},{"type":49,"tag":119,"props":1396,"children":1397},{"style":148},[1398],{"type":55,"value":176},{"type":49,"tag":119,"props":1400,"children":1401},{"style":163},[1402],{"type":55,"value":181},{"type":49,"tag":119,"props":1404,"children":1405},{"style":148},[1406],{"type":55,"value":151},{"type":49,"tag":119,"props":1408,"children":1409},{"class":121,"line":1211},[1410,1414,1418,1422,1426],{"type":49,"tag":119,"props":1411,"children":1412},{"style":132},[1413],{"type":55,"value":160},{"type":49,"tag":119,"props":1415,"children":1416},{"style":163},[1417],{"type":55,"value":166},{"type":49,"tag":119,"props":1419,"children":1420},{"style":132},[1421],{"type":55,"value":202},{"type":49,"tag":119,"props":1423,"children":1424},{"style":163},[1425],{"type":55,"value":181},{"type":49,"tag":119,"props":1427,"children":1428},{"style":148},[1429],{"type":55,"value":151},{"type":49,"tag":119,"props":1431,"children":1432},{"class":121,"line":1220},[1433,1437,1441,1446],{"type":49,"tag":119,"props":1434,"children":1435},{"style":132},[1436],{"type":55,"value":219},{"type":49,"tag":119,"props":1438,"children":1439},{"style":163},[1440],{"type":55,"value":224},{"type":49,"tag":119,"props":1442,"children":1443},{"style":132},[1444],{"type":55,"value":1445},"{\"name\": \"Updated Name\"}",{"type":49,"tag":119,"props":1447,"children":1448},{"style":163},[1449],{"type":55,"value":269},{"type":49,"tag":119,"props":1451,"children":1453},{"class":121,"line":1452},14,[1454],{"type":49,"tag":119,"props":1455,"children":1456},{"emptyLinePlaceholder":1292},[1457],{"type":55,"value":1295},{"type":49,"tag":119,"props":1459,"children":1461},{"class":121,"line":1460},15,[1462],{"type":49,"tag":119,"props":1463,"children":1464},{"style":1245},[1465],{"type":55,"value":1466},"# Delete a phone number\n",{"type":49,"tag":119,"props":1468,"children":1470},{"class":121,"line":1469},16,[1471,1475,1479,1484,1488],{"type":49,"tag":119,"props":1472,"children":1473},{"style":126},[1474],{"type":55,"value":129},{"type":49,"tag":119,"props":1476,"children":1477},{"style":132},[1478],{"type":55,"value":135},{"type":49,"tag":119,"props":1480,"children":1481},{"style":132},[1482],{"type":55,"value":1483}," DELETE",{"type":49,"tag":119,"props":1485,"children":1486},{"style":132},[1487],{"type":55,"value":770},{"type":49,"tag":119,"props":1489,"children":1490},{"style":148},[1491],{"type":55,"value":151},{"type":49,"tag":119,"props":1493,"children":1495},{"class":121,"line":1494},17,[1496,1500,1504,1508,1512],{"type":49,"tag":119,"props":1497,"children":1498},{"style":132},[1499],{"type":55,"value":160},{"type":49,"tag":119,"props":1501,"children":1502},{"style":163},[1503],{"type":55,"value":166},{"type":49,"tag":119,"props":1505,"children":1506},{"style":132},[1507],{"type":55,"value":171},{"type":49,"tag":119,"props":1509,"children":1510},{"style":148},[1511],{"type":55,"value":176},{"type":49,"tag":119,"props":1513,"children":1514},{"style":163},[1515],{"type":55,"value":1184},{"type":49,"tag":96,"props":1517,"children":1519},{"id":1518},"inbound-call-flow",[1520],{"type":55,"value":1521},"Inbound Call Flow",{"type":49,"tag":1523,"props":1524,"children":1525},"ol",{},[1526,1532,1537,1548],{"type":49,"tag":1527,"props":1528,"children":1529},"li",{},[1530],{"type":55,"value":1531},"Caller dials your Vapi phone number",{"type":49,"tag":1527,"props":1533,"children":1534},{},[1535],{"type":55,"value":1536},"Vapi routes the call to the assigned assistant or squad",{"type":49,"tag":1527,"props":1538,"children":1539},{},[1540,1542],{"type":55,"value":1541},"The assistant speaks its ",{"type":49,"tag":79,"props":1543,"children":1545},{"className":1544},[],[1546],{"type":55,"value":1547},"firstMessage",{"type":49,"tag":1527,"props":1549,"children":1550},{},[1551],{"type":55,"value":1552},"The conversation proceeds with the configured model, voice, and tools",{"type":49,"tag":96,"props":1554,"children":1556},{"id":1555},"outbound-call-flow",[1557],{"type":55,"value":1558},"Outbound Call Flow",{"type":49,"tag":1523,"props":1560,"children":1561},{},[1562,1589,1594],{"type":49,"tag":1527,"props":1563,"children":1564},{},[1565,1567,1573,1575,1581,1583],{"type":55,"value":1566},"Create a call via ",{"type":49,"tag":79,"props":1568,"children":1570},{"className":1569},[],[1571],{"type":55,"value":1572},"POST \u002Fcall",{"type":55,"value":1574}," with ",{"type":49,"tag":79,"props":1576,"children":1578},{"className":1577},[],[1579],{"type":55,"value":1580},"phoneNumberId",{"type":55,"value":1582}," and ",{"type":49,"tag":79,"props":1584,"children":1586},{"className":1585},[],[1587],{"type":55,"value":1588},"customer.number",{"type":49,"tag":1527,"props":1590,"children":1591},{},[1592],{"type":55,"value":1593},"Vapi dials the customer from your phone number",{"type":49,"tag":1527,"props":1595,"children":1596},{},[1597],{"type":55,"value":1598},"When answered, the assistant begins the conversation",{"type":49,"tag":96,"props":1600,"children":1602},{"id":1601},"free-number-limitations",[1603],{"type":55,"value":1604},"Free Number Limitations",{"type":49,"tag":1606,"props":1607,"children":1608},"ul",{},[1609,1614,1619],{"type":49,"tag":1527,"props":1610,"children":1611},{},[1612],{"type":55,"value":1613},"Cannot make international calls",{"type":49,"tag":1527,"props":1615,"children":1616},{},[1617],{"type":55,"value":1618},"Daily call limits apply",{"type":49,"tag":1527,"props":1620,"children":1621},{},[1622],{"type":55,"value":1623},"For production use, import your own Twilio\u002FVonage\u002FTelnyx numbers",{"type":49,"tag":96,"props":1625,"children":1627},{"id":1626},"references",[1628],{"type":55,"value":1629},"References",{"type":49,"tag":1606,"props":1631,"children":1632},{},[1633,1645,1655],{"type":49,"tag":1527,"props":1634,"children":1635},{},[1636],{"type":49,"tag":1637,"props":1638,"children":1642},"a",{"href":1639,"rel":1640},"https:\u002F\u002Fdocs.vapi.ai\u002Fphone-numbers\u002Fimport-twilio",[1641],"nofollow",[1643],{"type":55,"value":1644},"Vapi Phone Numbers Docs",{"type":49,"tag":1527,"props":1646,"children":1647},{},[1648],{"type":49,"tag":1637,"props":1649,"children":1652},{"href":1650,"rel":1651},"https:\u002F\u002Fdocs.vapi.ai\u002Ffree-telephony",[1641],[1653],{"type":55,"value":1654},"Free Telephony",{"type":49,"tag":1527,"props":1656,"children":1657},{},[1658],{"type":49,"tag":1637,"props":1659,"children":1662},{"href":1660,"rel":1661},"https:\u002F\u002Fdocs.vapi.ai\u002Fphone-numbers\u002Fphone-number-hooks",[1641],[1663],{"type":55,"value":983},{"type":49,"tag":96,"props":1665,"children":1667},{"id":1666},"additional-resources",[1668],{"type":55,"value":1669},"Additional Resources",{"type":49,"tag":58,"props":1671,"children":1672},{},[1673,1675,1680],{"type":55,"value":1674},"Vapi provides a ",{"type":49,"tag":71,"props":1676,"children":1677},{},[1678],{"type":55,"value":1679},"documentation MCP server",{"type":55,"value":1681}," 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":49,"tag":58,"props":1683,"children":1684},{},[1685,1690],{"type":49,"tag":71,"props":1686,"children":1687},{},[1688],{"type":55,"value":1689},"Manual setup:",{"type":55,"value":1691}," If your agent doesn't auto-detect the config, run:",{"type":49,"tag":108,"props":1693,"children":1695},{"className":110,"code":1694,"language":112,"meta":113,"style":113},"claude mcp add vapi-docs -- npx -y mcp-remote https:\u002F\u002Fdocs.vapi.ai\u002F_mcp\u002Fserver\n",[1696],{"type":49,"tag":79,"props":1697,"children":1698},{"__ignoreMap":113},[1699],{"type":49,"tag":119,"props":1700,"children":1701},{"class":121,"line":122},[1702,1707,1712,1717,1722,1727,1732,1737,1742],{"type":49,"tag":119,"props":1703,"children":1704},{"style":126},[1705],{"type":55,"value":1706},"claude",{"type":49,"tag":119,"props":1708,"children":1709},{"style":132},[1710],{"type":55,"value":1711}," mcp",{"type":49,"tag":119,"props":1713,"children":1714},{"style":132},[1715],{"type":55,"value":1716}," add",{"type":49,"tag":119,"props":1718,"children":1719},{"style":132},[1720],{"type":55,"value":1721}," vapi-docs",{"type":49,"tag":119,"props":1723,"children":1724},{"style":132},[1725],{"type":55,"value":1726}," --",{"type":49,"tag":119,"props":1728,"children":1729},{"style":132},[1730],{"type":55,"value":1731}," npx",{"type":49,"tag":119,"props":1733,"children":1734},{"style":132},[1735],{"type":55,"value":1736}," -y",{"type":49,"tag":119,"props":1738,"children":1739},{"style":132},[1740],{"type":55,"value":1741}," mcp-remote",{"type":49,"tag":119,"props":1743,"children":1744},{"style":132},[1745],{"type":55,"value":1746}," https:\u002F\u002Fdocs.vapi.ai\u002F_mcp\u002Fserver\n",{"type":49,"tag":58,"props":1748,"children":1749},{},[1750,1752,1759],{"type":55,"value":1751},"See the ",{"type":49,"tag":1637,"props":1753,"children":1756},{"href":1754,"rel":1755},"https:\u002F\u002Fdocs.vapi.ai\u002Fcli\u002Fmcp",[1641],[1757],{"type":55,"value":1758},"Vapi MCP integration guide",{"type":55,"value":1760}," for setup instructions across supported agents.",{"type":49,"tag":1762,"props":1763,"children":1764},"style",{},[1765],{"type":55,"value":1766},"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":1768,"total":413},[1769,1790,1802,1813,1819,1831,1844,1857,1870,1885],{"slug":8,"name":8,"fn":1770,"description":1771,"org":1772,"tags":1773,"stars":1787,"repoUrl":1788,"updatedAt":1789},"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},[1774,1777,1780,1783,1786],{"name":1775,"slug":1776,"type":16},"Agents","agents",{"name":1778,"slug":1779,"type":16},"Automation","automation",{"name":1781,"slug":1782,"type":16},"Speech","speech",{"name":1784,"slug":1785,"type":16},"Text-to-Speech","text-to-speech",{"name":18,"slug":19,"type":16},56,"https:\u002F\u002Fgithub.com\u002FVapiAI\u002Fmcp-server","2026-07-17T06:06:13.535114",{"slug":1791,"name":1791,"fn":1792,"description":1793,"org":1794,"tags":1795,"stars":23,"repoUrl":24,"updatedAt":1801},"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},[1796,1797,1800],{"name":1775,"slug":1776,"type":16},{"name":1798,"slug":1799,"type":16},"API Development","api-development",{"name":18,"slug":19,"type":16},"2026-07-20T05:57:28.680409",{"slug":1803,"name":1803,"fn":1804,"description":1805,"org":1806,"tags":1807,"stars":23,"repoUrl":24,"updatedAt":1812},"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},[1808,1809,1810,1811],{"name":1775,"slug":1776,"type":16},{"name":1778,"slug":1779,"type":16},{"name":1781,"slug":1782,"type":16},{"name":18,"slug":19,"type":16},"2026-07-20T05:57:32.68652",{"slug":4,"name":4,"fn":5,"description":6,"org":1814,"tags":1815,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1816,1817,1818],{"name":14,"slug":15,"type":16},{"name":21,"slug":22,"type":16},{"name":18,"slug":19,"type":16},{"slug":1820,"name":1820,"fn":1821,"description":1822,"org":1823,"tags":1824,"stars":23,"repoUrl":24,"updatedAt":1830},"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},[1825,1826,1829],{"name":1775,"slug":1776,"type":16},{"name":1827,"slug":1828,"type":16},"Multi-Agent","multi-agent",{"name":18,"slug":19,"type":16},"2026-07-20T05:57:30.690452",{"slug":1832,"name":1832,"fn":1833,"description":1834,"org":1835,"tags":1836,"stars":23,"repoUrl":24,"updatedAt":1843},"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},[1837,1838,1839,1840],{"name":1775,"slug":1776,"type":16},{"name":1798,"slug":1799,"type":16},{"name":1778,"slug":1779,"type":16},{"name":1841,"slug":1842,"type":16},"Integrations","integrations","2026-07-20T05:57:27.69122",{"slug":92,"name":92,"fn":1845,"description":1846,"org":1847,"tags":1848,"stars":23,"repoUrl":24,"updatedAt":1856},"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},[1849,1850,1853],{"name":1798,"slug":1799,"type":16},{"name":1851,"slug":1852,"type":16},"Auth","auth",{"name":1854,"slug":1855,"type":16},"Configuration","configuration","2026-07-20T05:57:25.717229",{"slug":1858,"name":1858,"fn":1859,"description":1860,"org":1861,"tags":1862,"stars":23,"repoUrl":24,"updatedAt":1869},"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},[1863,1864,1865,1866],{"name":1775,"slug":1776,"type":16},{"name":1798,"slug":1799,"type":16},{"name":1778,"slug":1779,"type":16},{"name":1867,"slug":1868,"type":16},"Webhooks","webhooks","2026-07-20T05:57:31.703006",{"slug":1871,"name":1871,"fn":1872,"description":1873,"org":1874,"tags":1875,"stars":23,"repoUrl":24,"updatedAt":1884},"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},[1876,1877,1880,1883],{"name":1775,"slug":1776,"type":16},{"name":1878,"slug":1879,"type":16},"Engineering","engineering",{"name":1881,"slug":1882,"type":16},"TypeScript","typescript",{"name":18,"slug":19,"type":16},"2026-07-20T05:57:26.732699",{"slug":1886,"name":1886,"fn":1887,"description":1888,"org":1889,"tags":1890,"stars":23,"repoUrl":24,"updatedAt":1897},"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},[1891,1892,1895,1896],{"name":1775,"slug":1776,"type":16},{"name":1893,"slug":1894,"type":16},"Prompt Engineering","prompt-engineering",{"name":1781,"slug":1782,"type":16},{"name":18,"slug":19,"type":16},"2026-07-17T06:08:21.647767",{"items":1899,"total":405},[1900,1906,1913,1919,1925,1932,1938],{"slug":1791,"name":1791,"fn":1792,"description":1793,"org":1901,"tags":1902,"stars":23,"repoUrl":24,"updatedAt":1801},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1903,1904,1905],{"name":1775,"slug":1776,"type":16},{"name":1798,"slug":1799,"type":16},{"name":18,"slug":19,"type":16},{"slug":1803,"name":1803,"fn":1804,"description":1805,"org":1907,"tags":1908,"stars":23,"repoUrl":24,"updatedAt":1812},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1909,1910,1911,1912],{"name":1775,"slug":1776,"type":16},{"name":1778,"slug":1779,"type":16},{"name":1781,"slug":1782,"type":16},{"name":18,"slug":19,"type":16},{"slug":4,"name":4,"fn":5,"description":6,"org":1914,"tags":1915,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1916,1917,1918],{"name":14,"slug":15,"type":16},{"name":21,"slug":22,"type":16},{"name":18,"slug":19,"type":16},{"slug":1820,"name":1820,"fn":1821,"description":1822,"org":1920,"tags":1921,"stars":23,"repoUrl":24,"updatedAt":1830},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1922,1923,1924],{"name":1775,"slug":1776,"type":16},{"name":1827,"slug":1828,"type":16},{"name":18,"slug":19,"type":16},{"slug":1832,"name":1832,"fn":1833,"description":1834,"org":1926,"tags":1927,"stars":23,"repoUrl":24,"updatedAt":1843},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1928,1929,1930,1931],{"name":1775,"slug":1776,"type":16},{"name":1798,"slug":1799,"type":16},{"name":1778,"slug":1779,"type":16},{"name":1841,"slug":1842,"type":16},{"slug":92,"name":92,"fn":1845,"description":1846,"org":1933,"tags":1934,"stars":23,"repoUrl":24,"updatedAt":1856},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1935,1936,1937],{"name":1798,"slug":1799,"type":16},{"name":1851,"slug":1852,"type":16},{"name":1854,"slug":1855,"type":16},{"slug":1858,"name":1858,"fn":1859,"description":1860,"org":1939,"tags":1940,"stars":23,"repoUrl":24,"updatedAt":1869},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1941,1942,1943,1944],{"name":1775,"slug":1776,"type":16},{"name":1798,"slug":1799,"type":16},{"name":1778,"slug":1779,"type":16},{"name":1867,"slug":1868,"type":16}]