[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-twilio-twilio-messaging-overview":3,"mdc-9xjf3l-key":36,"related-repo-twilio-twilio-messaging-overview":1510,"related-org-twilio-twilio-messaging-overview":1610},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":34,"mdContent":35},"twilio-messaging-overview","manage Twilio messaging channels","Twilio Messaging channel overview and onboarding guide. Covers all channels (SMS, WhatsApp, RCS, Facebook Messenger), the unified Messages API, channel selection guidance, and the recommended setup sequence from first message to production monitoring. Start here before choosing a specific messaging channel.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"twilio","Twilio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftwilio.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"SMS","sms","tag",{"name":17,"slug":18,"type":15},"WhatsApp","whatsapp",{"name":20,"slug":21,"type":15},"Messaging","messaging",{"name":23,"slug":24,"type":15},"Communications","communications",{"name":9,"slug":8,"type":15},25,"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai","2026-07-17T06:04:05.169101",null,7,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":29},[],"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai\u002Ftree\u002FHEAD\u002Fskills\u002Ftwilio\u002Ftwilio-messaging-overview","---\nname: twilio-messaging-overview\ndescription: >\n  Twilio Messaging channel overview and onboarding guide. Covers all\n  channels (SMS, WhatsApp, RCS, Facebook Messenger), the unified\n  Messages API, channel selection guidance, and the recommended setup\n  sequence from first message to production monitoring. Start here\n  before choosing a specific messaging channel.\n---\n\n## Overview\n\nTwilio's Messaging platform sends and receives messages across multiple channels through a single API. All channels use `client.messages.create()` — only the address format changes.\n\n| Channel | Address format | Rich media | Template required? | Reach | Skill |\n|---------|---------------|------------|-------------------|-------|-------|\n| **SMS\u002FMMS** | `+15551234567` (E.164) | MMS: images\u002Fvideo, US\u002FCA\u002FAU only | No | Global (180+ countries) | `twilio-sms-send-message` |\n| **WhatsApp** | `whatsapp:+15551234567` | Yes (images, docs, video, location) | Outside 24hr window: yes | 190+ countries | `twilio-whatsapp-send-message` |\n| **RCS** | Same number (via Messaging Service) | Yes (rich cards, carousels, video) | No | US + expanding globally | `twilio-rcs-messaging` |\n| **Facebook Messenger** | `messenger:{page-scoped-id}` | Yes | No | Global | — |\n\n---\n\n## Which Channel Should I Use?\n\n| If you need to... | Use | Why |\n|-------------------|-----|-----|\n| Reach any phone number | SMS | Universal — works on every phone, no app needed |\n| Send rich media globally | WhatsApp | Images, docs, video work worldwide (MMS is US\u002FCA\u002FAU only) |\n| Send time-sensitive alerts (OTP, outages) | SMS | Highest open rates, no app dependency |\n| Reach opted-in audience at lower cost | WhatsApp | No per-message fee in many markets |\n| Run marketing campaigns across channels | Start with `twilio-marketing-promotions-advisor` | Planner skill handles channel mix, compliance, and fallback |\n| Send transactional notifications | Start with `twilio-notifications-alerts-advisor` | Planner skill handles urgency-based channel routing |\n\n**Not sure?** Use a Planner skill first — it will qualify your use case and recommend the right channel combination.\n\n---\n\n## Unified API\n\nAll channels share `messages.create()`. The only difference is the address format in `from` and `to`.\n\n**Python**\n```python\nimport os\nfrom twilio.rest import Client\n\nclient = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n\n# SMS\nsms = client.messages.create(\n    from_=\"+15017122661\",\n    to=\"+15558675310\",\n    body=\"Your order shipped.\"\n)\n\n# WhatsApp — same API, prefixed addresses\nwhatsapp = client.messages.create(\n    from_=\"whatsapp:+15017122661\",\n    to=\"whatsapp:+15558675310\",\n    body=\"Your order shipped.\"\n)\n```\n\n**Node.js**\n```javascript\nconst client = require(\"twilio\")(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\n\u002F\u002F SMS\nconst sms = await client.messages.create({\n    from: \"+15017122661\",\n    to: \"+15558675310\",\n    body: \"Your order shipped.\",\n});\n\n\u002F\u002F WhatsApp — same API, prefixed addresses\nconst whatsapp = await client.messages.create({\n    from: \"whatsapp:+15017122661\",\n    to: \"whatsapp:+15558675310\",\n    body: \"Your order shipped.\",\n});\n```\n\n---\n\n## Onboarding Sequence\n\nSet up messaging in this order. Each step builds on the previous.\n\n### Step 1: Foundation\nGet a Twilio number, send your first SMS.\n- `twilio-account-setup` → `twilio-sms-send-message`\n\n### Step 2: Sender Strategy\nCreate a Messaging Service and add your numbers to a sender pool. Use `messagingServiceSid` instead of `from` for all production sends — this enables geo-match, sticky sender, and unlocks compliance features.\n- `twilio-messaging-services`\n\n### Step 3: Compliance\nRegister for A2P 10DLC (required for US SMS traffic). Set up opt-out handling.\n- `twilio-compliance-onboarding` → `twilio-compliance-traffic`\n\n### Step 4: Protect\nEnable SMS pumping protection (prevents artificial traffic inflation) and compliance toolkit (quiet hours, reassigned number detection) on your Messaging Service.\n- `twilio-messaging-services` (Compliance Toolkit + SMS Pumping Protection sections)\n\n### Step 5: Add Channels\nAdd WhatsApp or other channels. Use Content Templates for cross-channel message formatting.\n- `twilio-whatsapp-send-message` → `twilio-content-template-builder`\n\n### Step 6: Monitor\nEnable intelligent alerts for error pattern detection. Set up status callbacks for delivery tracking.\n- `twilio-messaging-services` (Intelligent Alerts section) → `twilio-messaging-webhooks`\n\n---\n\n## CANNOT\n\n- **Cannot send cross-channel in a single API call** — Each `messages.create()` targets one channel. For multi-channel fallback, implement sequencing in your application (e.g., try SMS, on failure send WhatsApp).\n- **Cannot use WhatsApp free-form messages outside the 24-hour window** — After 24 hours since the user's last inbound message, you must use a pre-approved template. See `twilio-whatsapp-send-message`.\n- **Cannot send MMS outside US, Canada, and Australia** — MMS is only supported on US\u002FCA\u002FAU numbers. For international rich media, use WhatsApp.\n- **Cannot use SMS pumping protection or compliance toolkit without a Messaging Service** — These features are configured per Messaging Service. Raw `from` number sends don't get these protections.\n- **Cannot mix channels in a single Messaging Service sender pool** — A Messaging Service manages phone numbers for SMS\u002FMMS. WhatsApp senders are configured separately.\n- **Cannot guarantee delivery on any channel** — SMS can be carrier-filtered, WhatsApp can queue-timeout (4 hours). Always implement status callbacks to track delivery.\n\n---\n\n## Next Steps\n\n- **Send SMS:** `twilio-sms-send-message`\n- **Send RCS:** `twilio-rcs-messaging`\n- **Send WhatsApp:** `twilio-whatsapp-send-message`\n- **Set up sender pools and production features:** `twilio-messaging-services`\n- **Channel selection for marketing:** `twilio-marketing-promotions-advisor`\n- **Channel selection for notifications:** `twilio-notifications-alerts-advisor`\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,65,281,285,291,433,443,446,452,481,489,660,668,1117,1120,1126,1131,1138,1143,1164,1170,1190,1202,1208,1213,1232,1238,1243,1256,1262,1267,1285,1291,1296,1315,1318,1324,1407,1410,1416,1504],{"type":42,"tag":43,"props":44,"children":46},"element","h2",{"id":45},"overview",[47],{"type":48,"value":49},"text","Overview",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54,56,63],{"type":48,"value":55},"Twilio's Messaging platform sends and receives messages across multiple channels through a single API. All channels use ",{"type":42,"tag":57,"props":58,"children":60},"code",{"className":59},[],[61],{"type":48,"value":62},"client.messages.create()",{"type":48,"value":64}," — only the address format changes.",{"type":42,"tag":66,"props":67,"children":68},"table",{},[69,108],{"type":42,"tag":70,"props":71,"children":72},"thead",{},[73],{"type":42,"tag":74,"props":75,"children":76},"tr",{},[77,83,88,93,98,103],{"type":42,"tag":78,"props":79,"children":80},"th",{},[81],{"type":48,"value":82},"Channel",{"type":42,"tag":78,"props":84,"children":85},{},[86],{"type":48,"value":87},"Address format",{"type":42,"tag":78,"props":89,"children":90},{},[91],{"type":48,"value":92},"Rich media",{"type":42,"tag":78,"props":94,"children":95},{},[96],{"type":48,"value":97},"Template required?",{"type":42,"tag":78,"props":99,"children":100},{},[101],{"type":48,"value":102},"Reach",{"type":42,"tag":78,"props":104,"children":105},{},[106],{"type":48,"value":107},"Skill",{"type":42,"tag":109,"props":110,"children":111},"tbody",{},[112,160,203,242],{"type":42,"tag":74,"props":113,"children":114},{},[115,125,136,141,146,151],{"type":42,"tag":116,"props":117,"children":118},"td",{},[119],{"type":42,"tag":120,"props":121,"children":122},"strong",{},[123],{"type":48,"value":124},"SMS\u002FMMS",{"type":42,"tag":116,"props":126,"children":127},{},[128,134],{"type":42,"tag":57,"props":129,"children":131},{"className":130},[],[132],{"type":48,"value":133},"+15551234567",{"type":48,"value":135}," (E.164)",{"type":42,"tag":116,"props":137,"children":138},{},[139],{"type":48,"value":140},"MMS: images\u002Fvideo, US\u002FCA\u002FAU only",{"type":42,"tag":116,"props":142,"children":143},{},[144],{"type":48,"value":145},"No",{"type":42,"tag":116,"props":147,"children":148},{},[149],{"type":48,"value":150},"Global (180+ countries)",{"type":42,"tag":116,"props":152,"children":153},{},[154],{"type":42,"tag":57,"props":155,"children":157},{"className":156},[],[158],{"type":48,"value":159},"twilio-sms-send-message",{"type":42,"tag":74,"props":161,"children":162},{},[163,170,179,184,189,194],{"type":42,"tag":116,"props":164,"children":165},{},[166],{"type":42,"tag":120,"props":167,"children":168},{},[169],{"type":48,"value":17},{"type":42,"tag":116,"props":171,"children":172},{},[173],{"type":42,"tag":57,"props":174,"children":176},{"className":175},[],[177],{"type":48,"value":178},"whatsapp:+15551234567",{"type":42,"tag":116,"props":180,"children":181},{},[182],{"type":48,"value":183},"Yes (images, docs, video, location)",{"type":42,"tag":116,"props":185,"children":186},{},[187],{"type":48,"value":188},"Outside 24hr window: yes",{"type":42,"tag":116,"props":190,"children":191},{},[192],{"type":48,"value":193},"190+ countries",{"type":42,"tag":116,"props":195,"children":196},{},[197],{"type":42,"tag":57,"props":198,"children":200},{"className":199},[],[201],{"type":48,"value":202},"twilio-whatsapp-send-message",{"type":42,"tag":74,"props":204,"children":205},{},[206,214,219,224,228,233],{"type":42,"tag":116,"props":207,"children":208},{},[209],{"type":42,"tag":120,"props":210,"children":211},{},[212],{"type":48,"value":213},"RCS",{"type":42,"tag":116,"props":215,"children":216},{},[217],{"type":48,"value":218},"Same number (via Messaging Service)",{"type":42,"tag":116,"props":220,"children":221},{},[222],{"type":48,"value":223},"Yes (rich cards, carousels, video)",{"type":42,"tag":116,"props":225,"children":226},{},[227],{"type":48,"value":145},{"type":42,"tag":116,"props":229,"children":230},{},[231],{"type":48,"value":232},"US + expanding globally",{"type":42,"tag":116,"props":234,"children":235},{},[236],{"type":42,"tag":57,"props":237,"children":239},{"className":238},[],[240],{"type":48,"value":241},"twilio-rcs-messaging",{"type":42,"tag":74,"props":243,"children":244},{},[245,253,262,267,271,276],{"type":42,"tag":116,"props":246,"children":247},{},[248],{"type":42,"tag":120,"props":249,"children":250},{},[251],{"type":48,"value":252},"Facebook Messenger",{"type":42,"tag":116,"props":254,"children":255},{},[256],{"type":42,"tag":57,"props":257,"children":259},{"className":258},[],[260],{"type":48,"value":261},"messenger:{page-scoped-id}",{"type":42,"tag":116,"props":263,"children":264},{},[265],{"type":48,"value":266},"Yes",{"type":42,"tag":116,"props":268,"children":269},{},[270],{"type":48,"value":145},{"type":42,"tag":116,"props":272,"children":273},{},[274],{"type":48,"value":275},"Global",{"type":42,"tag":116,"props":277,"children":278},{},[279],{"type":48,"value":280},"—",{"type":42,"tag":282,"props":283,"children":284},"hr",{},[],{"type":42,"tag":43,"props":286,"children":288},{"id":287},"which-channel-should-i-use",[289],{"type":48,"value":290},"Which Channel Should I Use?",{"type":42,"tag":66,"props":292,"children":293},{},[294,315],{"type":42,"tag":70,"props":295,"children":296},{},[297],{"type":42,"tag":74,"props":298,"children":299},{},[300,305,310],{"type":42,"tag":78,"props":301,"children":302},{},[303],{"type":48,"value":304},"If you need to...",{"type":42,"tag":78,"props":306,"children":307},{},[308],{"type":48,"value":309},"Use",{"type":42,"tag":78,"props":311,"children":312},{},[313],{"type":48,"value":314},"Why",{"type":42,"tag":109,"props":316,"children":317},{},[318,335,352,369,386,410],{"type":42,"tag":74,"props":319,"children":320},{},[321,326,330],{"type":42,"tag":116,"props":322,"children":323},{},[324],{"type":48,"value":325},"Reach any phone number",{"type":42,"tag":116,"props":327,"children":328},{},[329],{"type":48,"value":13},{"type":42,"tag":116,"props":331,"children":332},{},[333],{"type":48,"value":334},"Universal — works on every phone, no app needed",{"type":42,"tag":74,"props":336,"children":337},{},[338,343,347],{"type":42,"tag":116,"props":339,"children":340},{},[341],{"type":48,"value":342},"Send rich media globally",{"type":42,"tag":116,"props":344,"children":345},{},[346],{"type":48,"value":17},{"type":42,"tag":116,"props":348,"children":349},{},[350],{"type":48,"value":351},"Images, docs, video work worldwide (MMS is US\u002FCA\u002FAU only)",{"type":42,"tag":74,"props":353,"children":354},{},[355,360,364],{"type":42,"tag":116,"props":356,"children":357},{},[358],{"type":48,"value":359},"Send time-sensitive alerts (OTP, outages)",{"type":42,"tag":116,"props":361,"children":362},{},[363],{"type":48,"value":13},{"type":42,"tag":116,"props":365,"children":366},{},[367],{"type":48,"value":368},"Highest open rates, no app dependency",{"type":42,"tag":74,"props":370,"children":371},{},[372,377,381],{"type":42,"tag":116,"props":373,"children":374},{},[375],{"type":48,"value":376},"Reach opted-in audience at lower cost",{"type":42,"tag":116,"props":378,"children":379},{},[380],{"type":48,"value":17},{"type":42,"tag":116,"props":382,"children":383},{},[384],{"type":48,"value":385},"No per-message fee in many markets",{"type":42,"tag":74,"props":387,"children":388},{},[389,394,405],{"type":42,"tag":116,"props":390,"children":391},{},[392],{"type":48,"value":393},"Run marketing campaigns across channels",{"type":42,"tag":116,"props":395,"children":396},{},[397,399],{"type":48,"value":398},"Start with ",{"type":42,"tag":57,"props":400,"children":402},{"className":401},[],[403],{"type":48,"value":404},"twilio-marketing-promotions-advisor",{"type":42,"tag":116,"props":406,"children":407},{},[408],{"type":48,"value":409},"Planner skill handles channel mix, compliance, and fallback",{"type":42,"tag":74,"props":411,"children":412},{},[413,418,428],{"type":42,"tag":116,"props":414,"children":415},{},[416],{"type":48,"value":417},"Send transactional notifications",{"type":42,"tag":116,"props":419,"children":420},{},[421,422],{"type":48,"value":398},{"type":42,"tag":57,"props":423,"children":425},{"className":424},[],[426],{"type":48,"value":427},"twilio-notifications-alerts-advisor",{"type":42,"tag":116,"props":429,"children":430},{},[431],{"type":48,"value":432},"Planner skill handles urgency-based channel routing",{"type":42,"tag":51,"props":434,"children":435},{},[436,441],{"type":42,"tag":120,"props":437,"children":438},{},[439],{"type":48,"value":440},"Not sure?",{"type":48,"value":442}," Use a Planner skill first — it will qualify your use case and recommend the right channel combination.",{"type":42,"tag":282,"props":444,"children":445},{},[],{"type":42,"tag":43,"props":447,"children":449},{"id":448},"unified-api",[450],{"type":48,"value":451},"Unified API",{"type":42,"tag":51,"props":453,"children":454},{},[455,457,463,465,471,473,479],{"type":48,"value":456},"All channels share ",{"type":42,"tag":57,"props":458,"children":460},{"className":459},[],[461],{"type":48,"value":462},"messages.create()",{"type":48,"value":464},". The only difference is the address format in ",{"type":42,"tag":57,"props":466,"children":468},{"className":467},[],[469],{"type":48,"value":470},"from",{"type":48,"value":472}," and ",{"type":42,"tag":57,"props":474,"children":476},{"className":475},[],[477],{"type":48,"value":478},"to",{"type":48,"value":480},".",{"type":42,"tag":51,"props":482,"children":483},{},[484],{"type":42,"tag":120,"props":485,"children":486},{},[487],{"type":48,"value":488},"Python",{"type":42,"tag":490,"props":491,"children":496},"pre",{"className":492,"code":493,"language":494,"meta":495,"style":495},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import os\nfrom twilio.rest import Client\n\nclient = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n\n# SMS\nsms = client.messages.create(\n    from_=\"+15017122661\",\n    to=\"+15558675310\",\n    body=\"Your order shipped.\"\n)\n\n# WhatsApp — same API, prefixed addresses\nwhatsapp = client.messages.create(\n    from_=\"whatsapp:+15017122661\",\n    to=\"whatsapp:+15558675310\",\n    body=\"Your order shipped.\"\n)\n","python","",[497],{"type":42,"tag":57,"props":498,"children":499},{"__ignoreMap":495},[500,511,520,530,539,547,556,564,573,582,591,600,608,617,626,635,644,652],{"type":42,"tag":501,"props":502,"children":505},"span",{"class":503,"line":504},"line",1,[506],{"type":42,"tag":501,"props":507,"children":508},{},[509],{"type":48,"value":510},"import os\n",{"type":42,"tag":501,"props":512,"children":514},{"class":503,"line":513},2,[515],{"type":42,"tag":501,"props":516,"children":517},{},[518],{"type":48,"value":519},"from twilio.rest import Client\n",{"type":42,"tag":501,"props":521,"children":523},{"class":503,"line":522},3,[524],{"type":42,"tag":501,"props":525,"children":527},{"emptyLinePlaceholder":526},true,[528],{"type":48,"value":529},"\n",{"type":42,"tag":501,"props":531,"children":533},{"class":503,"line":532},4,[534],{"type":42,"tag":501,"props":535,"children":536},{},[537],{"type":48,"value":538},"client = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n",{"type":42,"tag":501,"props":540,"children":542},{"class":503,"line":541},5,[543],{"type":42,"tag":501,"props":544,"children":545},{"emptyLinePlaceholder":526},[546],{"type":48,"value":529},{"type":42,"tag":501,"props":548,"children":550},{"class":503,"line":549},6,[551],{"type":42,"tag":501,"props":552,"children":553},{},[554],{"type":48,"value":555},"# SMS\n",{"type":42,"tag":501,"props":557,"children":558},{"class":503,"line":30},[559],{"type":42,"tag":501,"props":560,"children":561},{},[562],{"type":48,"value":563},"sms = client.messages.create(\n",{"type":42,"tag":501,"props":565,"children":567},{"class":503,"line":566},8,[568],{"type":42,"tag":501,"props":569,"children":570},{},[571],{"type":48,"value":572},"    from_=\"+15017122661\",\n",{"type":42,"tag":501,"props":574,"children":576},{"class":503,"line":575},9,[577],{"type":42,"tag":501,"props":578,"children":579},{},[580],{"type":48,"value":581},"    to=\"+15558675310\",\n",{"type":42,"tag":501,"props":583,"children":585},{"class":503,"line":584},10,[586],{"type":42,"tag":501,"props":587,"children":588},{},[589],{"type":48,"value":590},"    body=\"Your order shipped.\"\n",{"type":42,"tag":501,"props":592,"children":594},{"class":503,"line":593},11,[595],{"type":42,"tag":501,"props":596,"children":597},{},[598],{"type":48,"value":599},")\n",{"type":42,"tag":501,"props":601,"children":603},{"class":503,"line":602},12,[604],{"type":42,"tag":501,"props":605,"children":606},{"emptyLinePlaceholder":526},[607],{"type":48,"value":529},{"type":42,"tag":501,"props":609,"children":611},{"class":503,"line":610},13,[612],{"type":42,"tag":501,"props":613,"children":614},{},[615],{"type":48,"value":616},"# WhatsApp — same API, prefixed addresses\n",{"type":42,"tag":501,"props":618,"children":620},{"class":503,"line":619},14,[621],{"type":42,"tag":501,"props":622,"children":623},{},[624],{"type":48,"value":625},"whatsapp = client.messages.create(\n",{"type":42,"tag":501,"props":627,"children":629},{"class":503,"line":628},15,[630],{"type":42,"tag":501,"props":631,"children":632},{},[633],{"type":48,"value":634},"    from_=\"whatsapp:+15017122661\",\n",{"type":42,"tag":501,"props":636,"children":638},{"class":503,"line":637},16,[639],{"type":42,"tag":501,"props":640,"children":641},{},[642],{"type":48,"value":643},"    to=\"whatsapp:+15558675310\",\n",{"type":42,"tag":501,"props":645,"children":647},{"class":503,"line":646},17,[648],{"type":42,"tag":501,"props":649,"children":650},{},[651],{"type":48,"value":590},{"type":42,"tag":501,"props":653,"children":655},{"class":503,"line":654},18,[656],{"type":42,"tag":501,"props":657,"children":658},{},[659],{"type":48,"value":599},{"type":42,"tag":51,"props":661,"children":662},{},[663],{"type":42,"tag":120,"props":664,"children":665},{},[666],{"type":48,"value":667},"Node.js",{"type":42,"tag":490,"props":669,"children":673},{"className":670,"code":671,"language":672,"meta":495,"style":495},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","const client = require(\"twilio\")(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\n\u002F\u002F SMS\nconst sms = await client.messages.create({\n    from: \"+15017122661\",\n    to: \"+15558675310\",\n    body: \"Your order shipped.\",\n});\n\n\u002F\u002F WhatsApp — same API, prefixed addresses\nconst whatsapp = await client.messages.create({\n    from: \"whatsapp:+15017122661\",\n    to: \"whatsapp:+15558675310\",\n    body: \"Your order shipped.\",\n});\n","javascript",[674],{"type":42,"tag":57,"props":675,"children":676},{"__ignoreMap":495},[677,778,785,794,848,881,910,939,956,963,971,1019,1047,1075,1102],{"type":42,"tag":501,"props":678,"children":679},{"class":503,"line":504},[680,686,692,698,704,709,714,719,723,728,732,737,741,746,751,756,760,764,768,773],{"type":42,"tag":501,"props":681,"children":683},{"style":682},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[684],{"type":48,"value":685},"const",{"type":42,"tag":501,"props":687,"children":689},{"style":688},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[690],{"type":48,"value":691}," client ",{"type":42,"tag":501,"props":693,"children":695},{"style":694},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[696],{"type":48,"value":697},"=",{"type":42,"tag":501,"props":699,"children":701},{"style":700},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[702],{"type":48,"value":703}," require",{"type":42,"tag":501,"props":705,"children":706},{"style":688},[707],{"type":48,"value":708},"(",{"type":42,"tag":501,"props":710,"children":711},{"style":694},[712],{"type":48,"value":713},"\"",{"type":42,"tag":501,"props":715,"children":717},{"style":716},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[718],{"type":48,"value":8},{"type":42,"tag":501,"props":720,"children":721},{"style":694},[722],{"type":48,"value":713},{"type":42,"tag":501,"props":724,"children":725},{"style":688},[726],{"type":48,"value":727},")(process",{"type":42,"tag":501,"props":729,"children":730},{"style":694},[731],{"type":48,"value":480},{"type":42,"tag":501,"props":733,"children":734},{"style":688},[735],{"type":48,"value":736},"env",{"type":42,"tag":501,"props":738,"children":739},{"style":694},[740],{"type":48,"value":480},{"type":42,"tag":501,"props":742,"children":743},{"style":688},[744],{"type":48,"value":745},"TWILIO_ACCOUNT_SID",{"type":42,"tag":501,"props":747,"children":748},{"style":694},[749],{"type":48,"value":750},",",{"type":42,"tag":501,"props":752,"children":753},{"style":688},[754],{"type":48,"value":755}," process",{"type":42,"tag":501,"props":757,"children":758},{"style":694},[759],{"type":48,"value":480},{"type":42,"tag":501,"props":761,"children":762},{"style":688},[763],{"type":48,"value":736},{"type":42,"tag":501,"props":765,"children":766},{"style":694},[767],{"type":48,"value":480},{"type":42,"tag":501,"props":769,"children":770},{"style":688},[771],{"type":48,"value":772},"TWILIO_AUTH_TOKEN)",{"type":42,"tag":501,"props":774,"children":775},{"style":694},[776],{"type":48,"value":777},";\n",{"type":42,"tag":501,"props":779,"children":780},{"class":503,"line":513},[781],{"type":42,"tag":501,"props":782,"children":783},{"emptyLinePlaceholder":526},[784],{"type":48,"value":529},{"type":42,"tag":501,"props":786,"children":787},{"class":503,"line":522},[788],{"type":42,"tag":501,"props":789,"children":791},{"style":790},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[792],{"type":48,"value":793},"\u002F\u002F SMS\n",{"type":42,"tag":501,"props":795,"children":796},{"class":503,"line":532},[797,801,806,810,816,821,825,830,834,839,843],{"type":42,"tag":501,"props":798,"children":799},{"style":682},[800],{"type":48,"value":685},{"type":42,"tag":501,"props":802,"children":803},{"style":688},[804],{"type":48,"value":805}," sms ",{"type":42,"tag":501,"props":807,"children":808},{"style":694},[809],{"type":48,"value":697},{"type":42,"tag":501,"props":811,"children":813},{"style":812},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[814],{"type":48,"value":815}," await",{"type":42,"tag":501,"props":817,"children":818},{"style":688},[819],{"type":48,"value":820}," client",{"type":42,"tag":501,"props":822,"children":823},{"style":694},[824],{"type":48,"value":480},{"type":42,"tag":501,"props":826,"children":827},{"style":688},[828],{"type":48,"value":829},"messages",{"type":42,"tag":501,"props":831,"children":832},{"style":694},[833],{"type":48,"value":480},{"type":42,"tag":501,"props":835,"children":836},{"style":700},[837],{"type":48,"value":838},"create",{"type":42,"tag":501,"props":840,"children":841},{"style":688},[842],{"type":48,"value":708},{"type":42,"tag":501,"props":844,"children":845},{"style":694},[846],{"type":48,"value":847},"{\n",{"type":42,"tag":501,"props":849,"children":850},{"class":503,"line":541},[851,857,862,867,872,876],{"type":42,"tag":501,"props":852,"children":854},{"style":853},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[855],{"type":48,"value":856},"    from",{"type":42,"tag":501,"props":858,"children":859},{"style":694},[860],{"type":48,"value":861},":",{"type":42,"tag":501,"props":863,"children":864},{"style":694},[865],{"type":48,"value":866}," \"",{"type":42,"tag":501,"props":868,"children":869},{"style":716},[870],{"type":48,"value":871},"+15017122661",{"type":42,"tag":501,"props":873,"children":874},{"style":694},[875],{"type":48,"value":713},{"type":42,"tag":501,"props":877,"children":878},{"style":694},[879],{"type":48,"value":880},",\n",{"type":42,"tag":501,"props":882,"children":883},{"class":503,"line":549},[884,889,893,897,902,906],{"type":42,"tag":501,"props":885,"children":886},{"style":853},[887],{"type":48,"value":888},"    to",{"type":42,"tag":501,"props":890,"children":891},{"style":694},[892],{"type":48,"value":861},{"type":42,"tag":501,"props":894,"children":895},{"style":694},[896],{"type":48,"value":866},{"type":42,"tag":501,"props":898,"children":899},{"style":716},[900],{"type":48,"value":901},"+15558675310",{"type":42,"tag":501,"props":903,"children":904},{"style":694},[905],{"type":48,"value":713},{"type":42,"tag":501,"props":907,"children":908},{"style":694},[909],{"type":48,"value":880},{"type":42,"tag":501,"props":911,"children":912},{"class":503,"line":30},[913,918,922,926,931,935],{"type":42,"tag":501,"props":914,"children":915},{"style":853},[916],{"type":48,"value":917},"    body",{"type":42,"tag":501,"props":919,"children":920},{"style":694},[921],{"type":48,"value":861},{"type":42,"tag":501,"props":923,"children":924},{"style":694},[925],{"type":48,"value":866},{"type":42,"tag":501,"props":927,"children":928},{"style":716},[929],{"type":48,"value":930},"Your order shipped.",{"type":42,"tag":501,"props":932,"children":933},{"style":694},[934],{"type":48,"value":713},{"type":42,"tag":501,"props":936,"children":937},{"style":694},[938],{"type":48,"value":880},{"type":42,"tag":501,"props":940,"children":941},{"class":503,"line":566},[942,947,952],{"type":42,"tag":501,"props":943,"children":944},{"style":694},[945],{"type":48,"value":946},"}",{"type":42,"tag":501,"props":948,"children":949},{"style":688},[950],{"type":48,"value":951},")",{"type":42,"tag":501,"props":953,"children":954},{"style":694},[955],{"type":48,"value":777},{"type":42,"tag":501,"props":957,"children":958},{"class":503,"line":575},[959],{"type":42,"tag":501,"props":960,"children":961},{"emptyLinePlaceholder":526},[962],{"type":48,"value":529},{"type":42,"tag":501,"props":964,"children":965},{"class":503,"line":584},[966],{"type":42,"tag":501,"props":967,"children":968},{"style":790},[969],{"type":48,"value":970},"\u002F\u002F WhatsApp — same API, prefixed addresses\n",{"type":42,"tag":501,"props":972,"children":973},{"class":503,"line":593},[974,978,983,987,991,995,999,1003,1007,1011,1015],{"type":42,"tag":501,"props":975,"children":976},{"style":682},[977],{"type":48,"value":685},{"type":42,"tag":501,"props":979,"children":980},{"style":688},[981],{"type":48,"value":982}," whatsapp ",{"type":42,"tag":501,"props":984,"children":985},{"style":694},[986],{"type":48,"value":697},{"type":42,"tag":501,"props":988,"children":989},{"style":812},[990],{"type":48,"value":815},{"type":42,"tag":501,"props":992,"children":993},{"style":688},[994],{"type":48,"value":820},{"type":42,"tag":501,"props":996,"children":997},{"style":694},[998],{"type":48,"value":480},{"type":42,"tag":501,"props":1000,"children":1001},{"style":688},[1002],{"type":48,"value":829},{"type":42,"tag":501,"props":1004,"children":1005},{"style":694},[1006],{"type":48,"value":480},{"type":42,"tag":501,"props":1008,"children":1009},{"style":700},[1010],{"type":48,"value":838},{"type":42,"tag":501,"props":1012,"children":1013},{"style":688},[1014],{"type":48,"value":708},{"type":42,"tag":501,"props":1016,"children":1017},{"style":694},[1018],{"type":48,"value":847},{"type":42,"tag":501,"props":1020,"children":1021},{"class":503,"line":602},[1022,1026,1030,1034,1039,1043],{"type":42,"tag":501,"props":1023,"children":1024},{"style":853},[1025],{"type":48,"value":856},{"type":42,"tag":501,"props":1027,"children":1028},{"style":694},[1029],{"type":48,"value":861},{"type":42,"tag":501,"props":1031,"children":1032},{"style":694},[1033],{"type":48,"value":866},{"type":42,"tag":501,"props":1035,"children":1036},{"style":716},[1037],{"type":48,"value":1038},"whatsapp:+15017122661",{"type":42,"tag":501,"props":1040,"children":1041},{"style":694},[1042],{"type":48,"value":713},{"type":42,"tag":501,"props":1044,"children":1045},{"style":694},[1046],{"type":48,"value":880},{"type":42,"tag":501,"props":1048,"children":1049},{"class":503,"line":610},[1050,1054,1058,1062,1067,1071],{"type":42,"tag":501,"props":1051,"children":1052},{"style":853},[1053],{"type":48,"value":888},{"type":42,"tag":501,"props":1055,"children":1056},{"style":694},[1057],{"type":48,"value":861},{"type":42,"tag":501,"props":1059,"children":1060},{"style":694},[1061],{"type":48,"value":866},{"type":42,"tag":501,"props":1063,"children":1064},{"style":716},[1065],{"type":48,"value":1066},"whatsapp:+15558675310",{"type":42,"tag":501,"props":1068,"children":1069},{"style":694},[1070],{"type":48,"value":713},{"type":42,"tag":501,"props":1072,"children":1073},{"style":694},[1074],{"type":48,"value":880},{"type":42,"tag":501,"props":1076,"children":1077},{"class":503,"line":619},[1078,1082,1086,1090,1094,1098],{"type":42,"tag":501,"props":1079,"children":1080},{"style":853},[1081],{"type":48,"value":917},{"type":42,"tag":501,"props":1083,"children":1084},{"style":694},[1085],{"type":48,"value":861},{"type":42,"tag":501,"props":1087,"children":1088},{"style":694},[1089],{"type":48,"value":866},{"type":42,"tag":501,"props":1091,"children":1092},{"style":716},[1093],{"type":48,"value":930},{"type":42,"tag":501,"props":1095,"children":1096},{"style":694},[1097],{"type":48,"value":713},{"type":42,"tag":501,"props":1099,"children":1100},{"style":694},[1101],{"type":48,"value":880},{"type":42,"tag":501,"props":1103,"children":1104},{"class":503,"line":628},[1105,1109,1113],{"type":42,"tag":501,"props":1106,"children":1107},{"style":694},[1108],{"type":48,"value":946},{"type":42,"tag":501,"props":1110,"children":1111},{"style":688},[1112],{"type":48,"value":951},{"type":42,"tag":501,"props":1114,"children":1115},{"style":694},[1116],{"type":48,"value":777},{"type":42,"tag":282,"props":1118,"children":1119},{},[],{"type":42,"tag":43,"props":1121,"children":1123},{"id":1122},"onboarding-sequence",[1124],{"type":48,"value":1125},"Onboarding Sequence",{"type":42,"tag":51,"props":1127,"children":1128},{},[1129],{"type":48,"value":1130},"Set up messaging in this order. Each step builds on the previous.",{"type":42,"tag":1132,"props":1133,"children":1135},"h3",{"id":1134},"step-1-foundation",[1136],{"type":48,"value":1137},"Step 1: Foundation",{"type":42,"tag":51,"props":1139,"children":1140},{},[1141],{"type":48,"value":1142},"Get a Twilio number, send your first SMS.",{"type":42,"tag":1144,"props":1145,"children":1146},"ul",{},[1147],{"type":42,"tag":1148,"props":1149,"children":1150},"li",{},[1151,1157,1159],{"type":42,"tag":57,"props":1152,"children":1154},{"className":1153},[],[1155],{"type":48,"value":1156},"twilio-account-setup",{"type":48,"value":1158}," → ",{"type":42,"tag":57,"props":1160,"children":1162},{"className":1161},[],[1163],{"type":48,"value":159},{"type":42,"tag":1132,"props":1165,"children":1167},{"id":1166},"step-2-sender-strategy",[1168],{"type":48,"value":1169},"Step 2: Sender Strategy",{"type":42,"tag":51,"props":1171,"children":1172},{},[1173,1175,1181,1183,1188],{"type":48,"value":1174},"Create a Messaging Service and add your numbers to a sender pool. Use ",{"type":42,"tag":57,"props":1176,"children":1178},{"className":1177},[],[1179],{"type":48,"value":1180},"messagingServiceSid",{"type":48,"value":1182}," instead of ",{"type":42,"tag":57,"props":1184,"children":1186},{"className":1185},[],[1187],{"type":48,"value":470},{"type":48,"value":1189}," for all production sends — this enables geo-match, sticky sender, and unlocks compliance features.",{"type":42,"tag":1144,"props":1191,"children":1192},{},[1193],{"type":42,"tag":1148,"props":1194,"children":1195},{},[1196],{"type":42,"tag":57,"props":1197,"children":1199},{"className":1198},[],[1200],{"type":48,"value":1201},"twilio-messaging-services",{"type":42,"tag":1132,"props":1203,"children":1205},{"id":1204},"step-3-compliance",[1206],{"type":48,"value":1207},"Step 3: Compliance",{"type":42,"tag":51,"props":1209,"children":1210},{},[1211],{"type":48,"value":1212},"Register for A2P 10DLC (required for US SMS traffic). Set up opt-out handling.",{"type":42,"tag":1144,"props":1214,"children":1215},{},[1216],{"type":42,"tag":1148,"props":1217,"children":1218},{},[1219,1225,1226],{"type":42,"tag":57,"props":1220,"children":1222},{"className":1221},[],[1223],{"type":48,"value":1224},"twilio-compliance-onboarding",{"type":48,"value":1158},{"type":42,"tag":57,"props":1227,"children":1229},{"className":1228},[],[1230],{"type":48,"value":1231},"twilio-compliance-traffic",{"type":42,"tag":1132,"props":1233,"children":1235},{"id":1234},"step-4-protect",[1236],{"type":48,"value":1237},"Step 4: Protect",{"type":42,"tag":51,"props":1239,"children":1240},{},[1241],{"type":48,"value":1242},"Enable SMS pumping protection (prevents artificial traffic inflation) and compliance toolkit (quiet hours, reassigned number detection) on your Messaging Service.",{"type":42,"tag":1144,"props":1244,"children":1245},{},[1246],{"type":42,"tag":1148,"props":1247,"children":1248},{},[1249,1254],{"type":42,"tag":57,"props":1250,"children":1252},{"className":1251},[],[1253],{"type":48,"value":1201},{"type":48,"value":1255}," (Compliance Toolkit + SMS Pumping Protection sections)",{"type":42,"tag":1132,"props":1257,"children":1259},{"id":1258},"step-5-add-channels",[1260],{"type":48,"value":1261},"Step 5: Add Channels",{"type":42,"tag":51,"props":1263,"children":1264},{},[1265],{"type":48,"value":1266},"Add WhatsApp or other channels. Use Content Templates for cross-channel message formatting.",{"type":42,"tag":1144,"props":1268,"children":1269},{},[1270],{"type":42,"tag":1148,"props":1271,"children":1272},{},[1273,1278,1279],{"type":42,"tag":57,"props":1274,"children":1276},{"className":1275},[],[1277],{"type":48,"value":202},{"type":48,"value":1158},{"type":42,"tag":57,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":48,"value":1284},"twilio-content-template-builder",{"type":42,"tag":1132,"props":1286,"children":1288},{"id":1287},"step-6-monitor",[1289],{"type":48,"value":1290},"Step 6: Monitor",{"type":42,"tag":51,"props":1292,"children":1293},{},[1294],{"type":48,"value":1295},"Enable intelligent alerts for error pattern detection. Set up status callbacks for delivery tracking.",{"type":42,"tag":1144,"props":1297,"children":1298},{},[1299],{"type":42,"tag":1148,"props":1300,"children":1301},{},[1302,1307,1309],{"type":42,"tag":57,"props":1303,"children":1305},{"className":1304},[],[1306],{"type":48,"value":1201},{"type":48,"value":1308}," (Intelligent Alerts section) → ",{"type":42,"tag":57,"props":1310,"children":1312},{"className":1311},[],[1313],{"type":48,"value":1314},"twilio-messaging-webhooks",{"type":42,"tag":282,"props":1316,"children":1317},{},[],{"type":42,"tag":43,"props":1319,"children":1321},{"id":1320},"cannot",[1322],{"type":48,"value":1323},"CANNOT",{"type":42,"tag":1144,"props":1325,"children":1326},{},[1327,1344,1360,1370,1387,1397],{"type":42,"tag":1148,"props":1328,"children":1329},{},[1330,1335,1337,1342],{"type":42,"tag":120,"props":1331,"children":1332},{},[1333],{"type":48,"value":1334},"Cannot send cross-channel in a single API call",{"type":48,"value":1336}," — Each ",{"type":42,"tag":57,"props":1338,"children":1340},{"className":1339},[],[1341],{"type":48,"value":462},{"type":48,"value":1343}," targets one channel. For multi-channel fallback, implement sequencing in your application (e.g., try SMS, on failure send WhatsApp).",{"type":42,"tag":1148,"props":1345,"children":1346},{},[1347,1352,1354,1359],{"type":42,"tag":120,"props":1348,"children":1349},{},[1350],{"type":48,"value":1351},"Cannot use WhatsApp free-form messages outside the 24-hour window",{"type":48,"value":1353}," — After 24 hours since the user's last inbound message, you must use a pre-approved template. See ",{"type":42,"tag":57,"props":1355,"children":1357},{"className":1356},[],[1358],{"type":48,"value":202},{"type":48,"value":480},{"type":42,"tag":1148,"props":1361,"children":1362},{},[1363,1368],{"type":42,"tag":120,"props":1364,"children":1365},{},[1366],{"type":48,"value":1367},"Cannot send MMS outside US, Canada, and Australia",{"type":48,"value":1369}," — MMS is only supported on US\u002FCA\u002FAU numbers. For international rich media, use WhatsApp.",{"type":42,"tag":1148,"props":1371,"children":1372},{},[1373,1378,1380,1385],{"type":42,"tag":120,"props":1374,"children":1375},{},[1376],{"type":48,"value":1377},"Cannot use SMS pumping protection or compliance toolkit without a Messaging Service",{"type":48,"value":1379}," — These features are configured per Messaging Service. Raw ",{"type":42,"tag":57,"props":1381,"children":1383},{"className":1382},[],[1384],{"type":48,"value":470},{"type":48,"value":1386}," number sends don't get these protections.",{"type":42,"tag":1148,"props":1388,"children":1389},{},[1390,1395],{"type":42,"tag":120,"props":1391,"children":1392},{},[1393],{"type":48,"value":1394},"Cannot mix channels in a single Messaging Service sender pool",{"type":48,"value":1396}," — A Messaging Service manages phone numbers for SMS\u002FMMS. WhatsApp senders are configured separately.",{"type":42,"tag":1148,"props":1398,"children":1399},{},[1400,1405],{"type":42,"tag":120,"props":1401,"children":1402},{},[1403],{"type":48,"value":1404},"Cannot guarantee delivery on any channel",{"type":48,"value":1406}," — SMS can be carrier-filtered, WhatsApp can queue-timeout (4 hours). Always implement status callbacks to track delivery.",{"type":42,"tag":282,"props":1408,"children":1409},{},[],{"type":42,"tag":43,"props":1411,"children":1413},{"id":1412},"next-steps",[1414],{"type":48,"value":1415},"Next Steps",{"type":42,"tag":1144,"props":1417,"children":1418},{},[1419,1434,1448,1462,1476,1490],{"type":42,"tag":1148,"props":1420,"children":1421},{},[1422,1427,1429],{"type":42,"tag":120,"props":1423,"children":1424},{},[1425],{"type":48,"value":1426},"Send SMS:",{"type":48,"value":1428}," ",{"type":42,"tag":57,"props":1430,"children":1432},{"className":1431},[],[1433],{"type":48,"value":159},{"type":42,"tag":1148,"props":1435,"children":1436},{},[1437,1442,1443],{"type":42,"tag":120,"props":1438,"children":1439},{},[1440],{"type":48,"value":1441},"Send RCS:",{"type":48,"value":1428},{"type":42,"tag":57,"props":1444,"children":1446},{"className":1445},[],[1447],{"type":48,"value":241},{"type":42,"tag":1148,"props":1449,"children":1450},{},[1451,1456,1457],{"type":42,"tag":120,"props":1452,"children":1453},{},[1454],{"type":48,"value":1455},"Send WhatsApp:",{"type":48,"value":1428},{"type":42,"tag":57,"props":1458,"children":1460},{"className":1459},[],[1461],{"type":48,"value":202},{"type":42,"tag":1148,"props":1463,"children":1464},{},[1465,1470,1471],{"type":42,"tag":120,"props":1466,"children":1467},{},[1468],{"type":48,"value":1469},"Set up sender pools and production features:",{"type":48,"value":1428},{"type":42,"tag":57,"props":1472,"children":1474},{"className":1473},[],[1475],{"type":48,"value":1201},{"type":42,"tag":1148,"props":1477,"children":1478},{},[1479,1484,1485],{"type":42,"tag":120,"props":1480,"children":1481},{},[1482],{"type":48,"value":1483},"Channel selection for marketing:",{"type":48,"value":1428},{"type":42,"tag":57,"props":1486,"children":1488},{"className":1487},[],[1489],{"type":48,"value":404},{"type":42,"tag":1148,"props":1491,"children":1492},{},[1493,1498,1499],{"type":42,"tag":120,"props":1494,"children":1495},{},[1496],{"type":48,"value":1497},"Channel selection for notifications:",{"type":48,"value":1428},{"type":42,"tag":57,"props":1500,"children":1502},{"className":1501},[],[1503],{"type":48,"value":427},{"type":42,"tag":1505,"props":1506,"children":1507},"style",{},[1508],{"type":48,"value":1509},"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":1511,"total":1609},[1512,1523,1543,1554,1566,1581,1598],{"slug":1156,"name":1156,"fn":1513,"description":1514,"org":1515,"tags":1516,"stars":26,"repoUrl":27,"updatedAt":1522},"configure Twilio accounts and credentials","Create and configure a Twilio account from scratch. Covers free trial signup, trial limitations, getting credentials (Account SID and Auth Token), buying a phone number, verifying recipient numbers for trial use, SDK installation, first API call, subaccount management (creation, inheritance, credential isolation, limits), and enabling specific products (AI Assistants, Conversations, Verify, ConversationRelay, WhatsApp). Use this skill before any other Twilio skill if you do not yet have a Twilio account or need to enable a product. For Organization-level governance (SSO, SCIM, multi-team), see `twilio-organizations-setup`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1517,1520,1521],{"name":1518,"slug":1519,"type":15},"API Development","api-development",{"name":23,"slug":24,"type":15},{"name":13,"slug":14,"type":15},"2026-08-01T05:43:28.968968",{"slug":1524,"name":1524,"fn":1525,"description":1526,"org":1527,"tags":1528,"stars":26,"repoUrl":27,"updatedAt":1542},"twilio-agent-augmentation-architect","augment human agents with AI intelligence","Planning skill for augmenting human agents with real-time AI intelligence. Qualifies the developer's use case across coaching, compliance, QA, and routing to recommend the right Conversation Intelligence + Conversation Memory + TaskRouter architecture. Handles both \"I want to add AI coaching to my call center\" and \"configure Conversation Intelligence operators for script adherence.\"\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1529,1532,1535,1538,1541],{"name":1530,"slug":1531,"type":15},"Agents","agents",{"name":1533,"slug":1534,"type":15},"AI","ai",{"name":1536,"slug":1537,"type":15},"Coaching","coaching",{"name":1539,"slug":1540,"type":15},"QA","qa",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:58.250609",{"slug":1544,"name":1544,"fn":1545,"description":1546,"org":1547,"tags":1548,"stars":26,"repoUrl":27,"updatedAt":1553},"twilio-agent-connect","connect AI agents to Twilio channels","Connect third-party AI agents (OpenAI, Bedrock, LangChain, Microsoft Foundry) to Twilio's communication channels using the Twilio Agent Connect SDK. Covers identity resolution, memory and context management via Conversation Memory, conversation orchestration via Conversation Orchestrator, multi-channel handling (Voice, SMS, RCS, WhatsApp, Chat), and AI-to-human escalation. Use this skill when integrating an existing LLM agent with Twilio services.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1549,1550,1551,1552],{"name":1530,"slug":1531,"type":15},{"name":1518,"slug":1519,"type":15},{"name":23,"slug":24,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:06:05.217098",{"slug":1555,"name":1555,"fn":1556,"description":1557,"org":1558,"tags":1559,"stars":26,"repoUrl":27,"updatedAt":1565},"twilio-ai-agent-architect","plan Twilio conversational AI agents","Planning skill for AI-powered conversational agents. Qualifies the developer's use case across outcome sophistication, entry point, and customer profile to recommend the right Twilio Conversations architecture and implementation skills. Handles both high-level requests (\"build me a voice AI assistant\") and specific ones (\"integrate ConversationRelay with my OpenAI backend\").\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1560,1561,1564],{"name":1530,"slug":1531,"type":15},{"name":1562,"slug":1563,"type":15},"Architecture","architecture",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:48.883723",{"slug":1567,"name":1567,"fn":1568,"description":1569,"org":1570,"tags":1571,"stars":26,"repoUrl":27,"updatedAt":1580},"twilio-call-recordings","record and manage Twilio voice calls","Record Twilio voice calls correctly. Covers the critical distinction between Record verb (voicemail) and Dial record (call recording), dual-channel for QA, mid-call pause for PCI, Conference recording, and the ConversationRelay workaround. Use this skill whenever you need to capture call audio for compliance, QA, or analytics.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1572,1575,1578,1579],{"name":1573,"slug":1574,"type":15},"Audio","audio",{"name":1576,"slug":1577,"type":15},"Compliance","compliance",{"name":1539,"slug":1540,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.268412",{"slug":1582,"name":1582,"fn":1583,"description":1584,"org":1585,"tags":1586,"stars":26,"repoUrl":27,"updatedAt":1597},"twilio-cli-reference","manage Twilio resources via CLI","Twilio CLI reference for managing Twilio resources from the terminal. Covers installation, credential profiles, phone number provisioning, sending SMS and email, webhook configuration, local development with a tunneling service, debugging with watch and logs, serverless deployment, and plugin ecosystem. Use when the developer asks to \"just do it\", \"set this up\", \"run a command\", mentions \"CLI\", \"command line\", or \"terminal\", or when an AI agent can execute a task directly instead of writing application code.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1587,1590,1593,1596],{"name":1588,"slug":1589,"type":15},"CLI","cli",{"name":1591,"slug":1592,"type":15},"Local Development","local-development",{"name":1594,"slug":1595,"type":15},"Operations","operations",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:54.925664",{"slug":1224,"name":1224,"fn":1599,"description":1600,"org":1601,"tags":1602,"stars":26,"repoUrl":27,"updatedAt":1608},"manage Twilio messaging and voice compliance","Registrations required BEFORE Twilio traffic works. Covers messaging programs (A2P 10DLC, toll-free verification, WhatsApp WABA, RCS, short code, alphanumeric sender) and voice trust programs (STIR\u002FSHAKEN, Voice Integrity, Branded Calling, CNAM). Each number\u002Fsender type has its own program — registration blocks traffic until complete.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1603,1604,1605,1606,1607],{"name":1576,"slug":1577,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-07-17T06:05:47.897229",57,{"items":1611,"total":1609},[1612,1618,1626,1633,1639,1646,1653,1661,1676,1689,1704,1722],{"slug":1156,"name":1156,"fn":1513,"description":1514,"org":1613,"tags":1614,"stars":26,"repoUrl":27,"updatedAt":1522},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1615,1616,1617],{"name":1518,"slug":1519,"type":15},{"name":23,"slug":24,"type":15},{"name":13,"slug":14,"type":15},{"slug":1524,"name":1524,"fn":1525,"description":1526,"org":1619,"tags":1620,"stars":26,"repoUrl":27,"updatedAt":1542},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1621,1622,1623,1624,1625],{"name":1530,"slug":1531,"type":15},{"name":1533,"slug":1534,"type":15},{"name":1536,"slug":1537,"type":15},{"name":1539,"slug":1540,"type":15},{"name":9,"slug":8,"type":15},{"slug":1544,"name":1544,"fn":1545,"description":1546,"org":1627,"tags":1628,"stars":26,"repoUrl":27,"updatedAt":1553},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1629,1630,1631,1632],{"name":1530,"slug":1531,"type":15},{"name":1518,"slug":1519,"type":15},{"name":23,"slug":24,"type":15},{"name":9,"slug":8,"type":15},{"slug":1555,"name":1555,"fn":1556,"description":1557,"org":1634,"tags":1635,"stars":26,"repoUrl":27,"updatedAt":1565},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1636,1637,1638],{"name":1530,"slug":1531,"type":15},{"name":1562,"slug":1563,"type":15},{"name":9,"slug":8,"type":15},{"slug":1567,"name":1567,"fn":1568,"description":1569,"org":1640,"tags":1641,"stars":26,"repoUrl":27,"updatedAt":1580},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1642,1643,1644,1645],{"name":1573,"slug":1574,"type":15},{"name":1576,"slug":1577,"type":15},{"name":1539,"slug":1540,"type":15},{"name":9,"slug":8,"type":15},{"slug":1582,"name":1582,"fn":1583,"description":1584,"org":1647,"tags":1648,"stars":26,"repoUrl":27,"updatedAt":1597},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1649,1650,1651,1652],{"name":1588,"slug":1589,"type":15},{"name":1591,"slug":1592,"type":15},{"name":1594,"slug":1595,"type":15},{"name":9,"slug":8,"type":15},{"slug":1224,"name":1224,"fn":1599,"description":1600,"org":1654,"tags":1655,"stars":26,"repoUrl":27,"updatedAt":1608},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1656,1657,1658,1659,1660],{"name":1576,"slug":1577,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"slug":1231,"name":1231,"fn":1662,"description":1663,"org":1664,"tags":1665,"stars":26,"repoUrl":27,"updatedAt":1675},"ensure compliance for Twilio messaging traffic","Rules you must follow for Twilio messaging and voice traffic. Covers TCPA (consent tiers, quiet hours, DNC), GDPR (EU consent, right to deletion), PCI DSS (payment recording, Pay verb), HIPAA (BAA, PHI), FDCPA (debt collection limits), CAN-SPAM, WhatsApp policies, SHAKEN\u002FSTIR, and consent management patterns. Use this skill proactively when developers have working traffic to ensure they follow the rules.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1666,1667,1668,1671,1674],{"name":1576,"slug":1577,"type":15},{"name":20,"slug":21,"type":15},{"name":1669,"slug":1670,"type":15},"Regulatory Compliance","regulatory-compliance",{"name":1672,"slug":1673,"type":15},"Security","security",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.952779",{"slug":1677,"name":1677,"fn":1678,"description":1679,"org":1680,"tags":1681,"stars":26,"repoUrl":27,"updatedAt":1688},"twilio-conference-calls","build multi-party calls with Twilio Conference","Build multi-party calls using Twilio Conference. Covers warm transfer, cold transfer, coaching (whisper), hold vs mute, participant modes, and supervisor barge. Use this skill for any contact center, support line, or scenario requiring transfers, holds, or multi-party calls.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1682,1683,1684,1687],{"name":1573,"slug":1574,"type":15},{"name":23,"slug":24,"type":15},{"name":1685,"slug":1686,"type":15},"Meetings","meetings",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.603708",{"slug":1284,"name":1284,"fn":1690,"description":1691,"org":1692,"tags":1693,"stars":26,"repoUrl":27,"updatedAt":1703},"create and send message templates with Twilio","Create, manage, and send message templates using Twilio's Content API. Covers template creation for WhatsApp, SMS, RCS, and MMS; variable usage; WhatsApp Meta approval; and sending templates via ContentSid. Use this skill when building structured messages that require pre-approval or consistent formatting across channels.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1694,1697,1698,1699,1702],{"name":1695,"slug":1696,"type":15},"Email","email",{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":1700,"slug":1701,"type":15},"Templates","templates",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:26.637309",{"slug":1705,"name":1705,"fn":1706,"description":1707,"org":1708,"tags":1709,"stars":26,"repoUrl":27,"updatedAt":1721},"twilio-conversation-intelligence","build conversation intelligence pipelines","Twilio Conversation Intelligence development guide. Use when building real-time or post-call conversation analysis, language operator pipelines, sentiment analysis, agent assist, cross-channel analytics, or querying aggregated conversation insights (sentiment trends, escalation rates, dashboards).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1710,1711,1714,1717,1720],{"name":1530,"slug":1531,"type":15},{"name":1712,"slug":1713,"type":15},"Analytics","analytics",{"name":1715,"slug":1716,"type":15},"Monitoring","monitoring",{"name":1718,"slug":1719,"type":15},"NLP","nlp",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:52.545387",{"slug":1723,"name":1723,"fn":1724,"description":1725,"org":1726,"tags":1727,"stars":26,"repoUrl":27,"updatedAt":1733},"twilio-conversation-memory","manage conversation memory with Twilio","Store and retrieve conversation context using Twilio Conversation Memory. Covers Memory Store provisioning, profile management, traits, observations, conversation summaries, and semantic Recall. Use this skill to give AI agents or human agents persistent memory of conversations across sessions and channels.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1728,1729,1732],{"name":1530,"slug":1531,"type":15},{"name":1730,"slug":1731,"type":15},"Memory","memory",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:19.526724"]