[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-twilio-twilio-lookup-phone-intelligence":3,"mdc-gb6g0h-key":33,"related-repo-twilio-twilio-lookup-phone-intelligence":1188,"related-org-twilio-twilio-lookup-phone-intelligence":1293},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":31,"mdContent":32},"twilio-lookup-phone-intelligence","validate phone numbers with Twilio Lookup","Look up phone number intelligence via Twilio Lookup v2 API. Covers number validation, line type detection (mobile\u002Flandline\u002FVoIP), SIM swap detection, caller name, identity match, and SMS pumping risk scoring. Use this skill to validate numbers or assess fraud risk before sending messages or calls.\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],{"name":13,"slug":14,"type":15},"Security","security","tag",{"name":17,"slug":18,"type":15},"SMS","sms",{"name":20,"slug":21,"type":15},"API Development","api-development",{"name":9,"slug":8,"type":15},25,"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai","2026-07-17T06:07:52.21544",null,7,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":26},[],"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai\u002Ftree\u002FHEAD\u002Fskills\u002Ftwilio\u002Ftwilio-lookup-phone-intelligence","---\nname: twilio-lookup-phone-intelligence\ndescription: >\n  Look up phone number intelligence via Twilio Lookup v2 API. Covers number\n  validation, line type detection (mobile\u002Flandline\u002FVoIP), SIM swap detection,\n  caller name, identity match, and SMS pumping risk scoring. Use this skill\n  to validate numbers or assess fraud risk before sending messages or calls.\n---\n\n## Overview\n\nTwilio Lookup validates phone numbers and provides optional intelligence packages. Basic validation is free; data packages (line type, SIM swap, etc.) are paid per lookup.\n\n---\n\n## Prerequisites\n\n- Twilio account (free trial works for basic lookups)\n  — New to Twilio? See `twilio-account-setup`\n- Environment variables:\n  - `TWILIO_ACCOUNT_SID`\n  - `TWILIO_AUTH_TOKEN`\n  — See `twilio-iam-auth-setup` for credential setup and best practices\n- SDK: `pip install twilio` \u002F `npm install twilio`\n\n---\n\n## Quickstart\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\nphone = client.lookups.v2.phone_numbers(\"+15108675310\").fetch()\n\nprint(phone.valid)            # True \u002F False\nprint(phone.phone_number)     # +15108675310 (E.164)\nprint(phone.national_format)  # (510) 867-5310\nprint(phone.country_code)     # US\n```\n\n**Node.js**\n```node\nconst twilio = require(\"twilio\");\nconst client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\nconst phone = await client.lookups.v2.phoneNumbers(\"+15108675310\").fetch();\n\nconsole.log(phone.valid);\nconsole.log(phone.phoneNumber);\nconsole.log(phone.nationalFormat);\n```\n\nIf `valid` is `false`, check `phone.validationErrors` for the reason.\n\n---\n\n## Key Patterns\n\n### Line Type Intelligence (paid)\n\nIdentifies mobile, landline, VoIP, toll-free, etc.\n\n**Python**\n```python\nphone = client.lookups.v2.phone_numbers(\"+15108675310\").fetch(\n    fields=\"line_type_intelligence\"\n)\nprint(phone.line_type_intelligence)\n# {'type': 'mobile', 'carrier_name': 'T-Mobile USA', ...}\n```\n\n**Node.js**\n```node\nconst phone = await client.lookups.v2.phoneNumbers(\"+15108675310\").fetch({\n    fields: \"line_type_intelligence\",\n});\nconsole.log(phone.lineTypeIntelligence);\n```\n\nLine types: `mobile`, `landline`, `voip`, `toll-free`, `fixedVoip`, `nonFixedVoip`, `personal`, `payphone`, `unknown`\n\n### Multiple Packages in One Request\n\n**Python**\n```python\nphone = client.lookups.v2.phone_numbers(\"+15108675310\").fetch(\n    fields=\"line_type_intelligence,sim_swap,caller_name\"\n)\n```\n\n**Node.js**\n```node\nconst phone = await client.lookups.v2.phoneNumbers(\"+15108675310\").fetch({\n    fields: \"line_type_intelligence,sim_swap,caller_name\",\n});\n```\n\n### Validate Before Sending\n\n**Python**\n```python\nphone = client.lookups.v2.phone_numbers(\"+invalid\").fetch()\nif not phone.valid:\n    print(f\"Invalid number: {phone.validation_errors}\")\n    # Handle gracefully — do not attempt to send\n```\n\n**Node.js**\n```node\nconst phone = await client.lookups.v2.phoneNumbers(\"+invalid\").fetch();\nif (!phone.valid) {\n    console.log(\"Invalid number:\", phone.validationErrors);\n}\n```\n\n### Available Data Packages\n\n| Package | `fields` value | Coverage | Use case |\n|---------|---------------|----------|----------|\n| Line Type Intelligence | `line_type_intelligence` | Worldwide | Route by line type; block VoIP |\n| Caller Name | `caller_name` | US only | Show caller ID |\n| SIM Swap | `sim_swap` | Select regions | Fraud detection |\n| Identity Match | `identity_match` | Select regions | Verify ownership |\n| SMS Pumping Risk | `sms_pumping_risk` | Worldwide | Fraud prevention |\n| Reassigned Number | `reassigned_number` | US only | Check if recycled |\n\n---\n\n## Common Errors\n\n| Code | Meaning | Fix |\n|------|---------|-----|\n| 20404 | Phone number not found | Number may be invalid or unsupported format |\n| 60601 | Data package not available for this region | Check regional coverage before requesting package |\n\n---\n\n## CANNOT\n\n- **Cannot look up by name or address** — Input is always a phone number. No reverse search.\n- **Cannot get caller_name for non-US numbers** — Returns error 60600 (out of coverage).\n- **Cannot detect conditional call forwarding** — Only unconditional forwarding is detected, and only for UK carriers.\n- **Cannot guarantee SIM swap data without carrier registration** — Returns error 60606 until carrier approval is in place.\n- **Cannot use Reassigned Number outside the US** — US-only dataset with monthly update cadence.\n- **Cannot get real-time SMS pumping scores** — Scores are statistical models, not live traffic analysis.\n- **Cannot write data** — Lookup v2 is read-only (GET only). The one exception is Line Type Override (POST\u002FDELETE).\n- **Cannot batch multiple phone numbers in one request** — One number per API call. Loop for bulk lookups.\n- **Cannot avoid billing on caller_name requests that return no data** — Billed per request regardless of whether data is returned.\n- **Cannot use Phone Number Quality Score or Pre-fill without provisioning** — Returns 60606. Contact Twilio sales to enable.\n- **Cannot guarantee deliverability from a valid lookup** — A valid number may still be unreachable (carrier issues, ported, etc.)\n\n---\n\n## Next Steps\n\n- **Send SMS after validation:** `twilio-sms-send-message`\n- **Send OTP after validation:** `twilio-verify-send-otp`\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,53,57,63,135,138,144,153,263,271,342,371,374,380,387,392,399,446,453,492,560,566,573,602,609,638,644,651,690,697,736,742,945,948,954,1017,1020,1026,1139,1142,1148,1182],{"type":39,"tag":40,"props":41,"children":43},"element","h2",{"id":42},"overview",[44],{"type":45,"value":46},"text","Overview",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51],{"type":45,"value":52},"Twilio Lookup validates phone numbers and provides optional intelligence packages. Basic validation is free; data packages (line type, SIM swap, etc.) are paid per lookup.",{"type":39,"tag":54,"props":55,"children":56},"hr",{},[],{"type":39,"tag":40,"props":58,"children":60},{"id":59},"prerequisites",[61],{"type":45,"value":62},"Prerequisites",{"type":39,"tag":64,"props":65,"children":66},"ul",{},[67,80,116],{"type":39,"tag":68,"props":69,"children":70},"li",{},[71,73],{"type":45,"value":72},"Twilio account (free trial works for basic lookups)\n— New to Twilio? See ",{"type":39,"tag":74,"props":75,"children":77},"code",{"className":76},[],[78],{"type":45,"value":79},"twilio-account-setup",{"type":39,"tag":68,"props":81,"children":82},{},[83,85],{"type":45,"value":84},"Environment variables:\n",{"type":39,"tag":64,"props":86,"children":87},{},[88,97],{"type":39,"tag":68,"props":89,"children":90},{},[91],{"type":39,"tag":74,"props":92,"children":94},{"className":93},[],[95],{"type":45,"value":96},"TWILIO_ACCOUNT_SID",{"type":39,"tag":68,"props":98,"children":99},{},[100,106,108,114],{"type":39,"tag":74,"props":101,"children":103},{"className":102},[],[104],{"type":45,"value":105},"TWILIO_AUTH_TOKEN",{"type":45,"value":107},"\n— See ",{"type":39,"tag":74,"props":109,"children":111},{"className":110},[],[112],{"type":45,"value":113},"twilio-iam-auth-setup",{"type":45,"value":115}," for credential setup and best practices",{"type":39,"tag":68,"props":117,"children":118},{},[119,121,127,129],{"type":45,"value":120},"SDK: ",{"type":39,"tag":74,"props":122,"children":124},{"className":123},[],[125],{"type":45,"value":126},"pip install twilio",{"type":45,"value":128}," \u002F ",{"type":39,"tag":74,"props":130,"children":132},{"className":131},[],[133],{"type":45,"value":134},"npm install twilio",{"type":39,"tag":54,"props":136,"children":137},{},[],{"type":39,"tag":40,"props":139,"children":141},{"id":140},"quickstart",[142],{"type":45,"value":143},"Quickstart",{"type":39,"tag":48,"props":145,"children":146},{},[147],{"type":39,"tag":148,"props":149,"children":150},"strong",{},[151],{"type":45,"value":152},"Python",{"type":39,"tag":154,"props":155,"children":160},"pre",{"className":156,"code":157,"language":158,"meta":159,"style":159},"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\nphone = client.lookups.v2.phone_numbers(\"+15108675310\").fetch()\n\nprint(phone.valid)            # True \u002F False\nprint(phone.phone_number)     # +15108675310 (E.164)\nprint(phone.national_format)  # (510) 867-5310\nprint(phone.country_code)     # US\n","python","",[161],{"type":39,"tag":74,"props":162,"children":163},{"__ignoreMap":159},[164,175,184,194,203,211,220,227,236,245,254],{"type":39,"tag":165,"props":166,"children":169},"span",{"class":167,"line":168},"line",1,[170],{"type":39,"tag":165,"props":171,"children":172},{},[173],{"type":45,"value":174},"import os\n",{"type":39,"tag":165,"props":176,"children":178},{"class":167,"line":177},2,[179],{"type":39,"tag":165,"props":180,"children":181},{},[182],{"type":45,"value":183},"from twilio.rest import Client\n",{"type":39,"tag":165,"props":185,"children":187},{"class":167,"line":186},3,[188],{"type":39,"tag":165,"props":189,"children":191},{"emptyLinePlaceholder":190},true,[192],{"type":45,"value":193},"\n",{"type":39,"tag":165,"props":195,"children":197},{"class":167,"line":196},4,[198],{"type":39,"tag":165,"props":199,"children":200},{},[201],{"type":45,"value":202},"client = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n",{"type":39,"tag":165,"props":204,"children":206},{"class":167,"line":205},5,[207],{"type":39,"tag":165,"props":208,"children":209},{"emptyLinePlaceholder":190},[210],{"type":45,"value":193},{"type":39,"tag":165,"props":212,"children":214},{"class":167,"line":213},6,[215],{"type":39,"tag":165,"props":216,"children":217},{},[218],{"type":45,"value":219},"phone = client.lookups.v2.phone_numbers(\"+15108675310\").fetch()\n",{"type":39,"tag":165,"props":221,"children":222},{"class":167,"line":27},[223],{"type":39,"tag":165,"props":224,"children":225},{"emptyLinePlaceholder":190},[226],{"type":45,"value":193},{"type":39,"tag":165,"props":228,"children":230},{"class":167,"line":229},8,[231],{"type":39,"tag":165,"props":232,"children":233},{},[234],{"type":45,"value":235},"print(phone.valid)            # True \u002F False\n",{"type":39,"tag":165,"props":237,"children":239},{"class":167,"line":238},9,[240],{"type":39,"tag":165,"props":241,"children":242},{},[243],{"type":45,"value":244},"print(phone.phone_number)     # +15108675310 (E.164)\n",{"type":39,"tag":165,"props":246,"children":248},{"class":167,"line":247},10,[249],{"type":39,"tag":165,"props":250,"children":251},{},[252],{"type":45,"value":253},"print(phone.national_format)  # (510) 867-5310\n",{"type":39,"tag":165,"props":255,"children":257},{"class":167,"line":256},11,[258],{"type":39,"tag":165,"props":259,"children":260},{},[261],{"type":45,"value":262},"print(phone.country_code)     # US\n",{"type":39,"tag":48,"props":264,"children":265},{},[266],{"type":39,"tag":148,"props":267,"children":268},{},[269],{"type":45,"value":270},"Node.js",{"type":39,"tag":154,"props":272,"children":276},{"className":273,"code":274,"language":275,"meta":159,"style":159},"language-node shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","const twilio = require(\"twilio\");\nconst client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\nconst phone = await client.lookups.v2.phoneNumbers(\"+15108675310\").fetch();\n\nconsole.log(phone.valid);\nconsole.log(phone.phoneNumber);\nconsole.log(phone.nationalFormat);\n","node",[277],{"type":39,"tag":74,"props":278,"children":279},{"__ignoreMap":159},[280,288,296,303,311,318,326,334],{"type":39,"tag":165,"props":281,"children":282},{"class":167,"line":168},[283],{"type":39,"tag":165,"props":284,"children":285},{},[286],{"type":45,"value":287},"const twilio = require(\"twilio\");\n",{"type":39,"tag":165,"props":289,"children":290},{"class":167,"line":177},[291],{"type":39,"tag":165,"props":292,"children":293},{},[294],{"type":45,"value":295},"const client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n",{"type":39,"tag":165,"props":297,"children":298},{"class":167,"line":186},[299],{"type":39,"tag":165,"props":300,"children":301},{"emptyLinePlaceholder":190},[302],{"type":45,"value":193},{"type":39,"tag":165,"props":304,"children":305},{"class":167,"line":196},[306],{"type":39,"tag":165,"props":307,"children":308},{},[309],{"type":45,"value":310},"const phone = await client.lookups.v2.phoneNumbers(\"+15108675310\").fetch();\n",{"type":39,"tag":165,"props":312,"children":313},{"class":167,"line":205},[314],{"type":39,"tag":165,"props":315,"children":316},{"emptyLinePlaceholder":190},[317],{"type":45,"value":193},{"type":39,"tag":165,"props":319,"children":320},{"class":167,"line":213},[321],{"type":39,"tag":165,"props":322,"children":323},{},[324],{"type":45,"value":325},"console.log(phone.valid);\n",{"type":39,"tag":165,"props":327,"children":328},{"class":167,"line":27},[329],{"type":39,"tag":165,"props":330,"children":331},{},[332],{"type":45,"value":333},"console.log(phone.phoneNumber);\n",{"type":39,"tag":165,"props":335,"children":336},{"class":167,"line":229},[337],{"type":39,"tag":165,"props":338,"children":339},{},[340],{"type":45,"value":341},"console.log(phone.nationalFormat);\n",{"type":39,"tag":48,"props":343,"children":344},{},[345,347,353,355,361,363,369],{"type":45,"value":346},"If ",{"type":39,"tag":74,"props":348,"children":350},{"className":349},[],[351],{"type":45,"value":352},"valid",{"type":45,"value":354}," is ",{"type":39,"tag":74,"props":356,"children":358},{"className":357},[],[359],{"type":45,"value":360},"false",{"type":45,"value":362},", check ",{"type":39,"tag":74,"props":364,"children":366},{"className":365},[],[367],{"type":45,"value":368},"phone.validationErrors",{"type":45,"value":370}," for the reason.",{"type":39,"tag":54,"props":372,"children":373},{},[],{"type":39,"tag":40,"props":375,"children":377},{"id":376},"key-patterns",[378],{"type":45,"value":379},"Key Patterns",{"type":39,"tag":381,"props":382,"children":384},"h3",{"id":383},"line-type-intelligence-paid",[385],{"type":45,"value":386},"Line Type Intelligence (paid)",{"type":39,"tag":48,"props":388,"children":389},{},[390],{"type":45,"value":391},"Identifies mobile, landline, VoIP, toll-free, etc.",{"type":39,"tag":48,"props":393,"children":394},{},[395],{"type":39,"tag":148,"props":396,"children":397},{},[398],{"type":45,"value":152},{"type":39,"tag":154,"props":400,"children":402},{"className":156,"code":401,"language":158,"meta":159,"style":159},"phone = client.lookups.v2.phone_numbers(\"+15108675310\").fetch(\n    fields=\"line_type_intelligence\"\n)\nprint(phone.line_type_intelligence)\n# {'type': 'mobile', 'carrier_name': 'T-Mobile USA', ...}\n",[403],{"type":39,"tag":74,"props":404,"children":405},{"__ignoreMap":159},[406,414,422,430,438],{"type":39,"tag":165,"props":407,"children":408},{"class":167,"line":168},[409],{"type":39,"tag":165,"props":410,"children":411},{},[412],{"type":45,"value":413},"phone = client.lookups.v2.phone_numbers(\"+15108675310\").fetch(\n",{"type":39,"tag":165,"props":415,"children":416},{"class":167,"line":177},[417],{"type":39,"tag":165,"props":418,"children":419},{},[420],{"type":45,"value":421},"    fields=\"line_type_intelligence\"\n",{"type":39,"tag":165,"props":423,"children":424},{"class":167,"line":186},[425],{"type":39,"tag":165,"props":426,"children":427},{},[428],{"type":45,"value":429},")\n",{"type":39,"tag":165,"props":431,"children":432},{"class":167,"line":196},[433],{"type":39,"tag":165,"props":434,"children":435},{},[436],{"type":45,"value":437},"print(phone.line_type_intelligence)\n",{"type":39,"tag":165,"props":439,"children":440},{"class":167,"line":205},[441],{"type":39,"tag":165,"props":442,"children":443},{},[444],{"type":45,"value":445},"# {'type': 'mobile', 'carrier_name': 'T-Mobile USA', ...}\n",{"type":39,"tag":48,"props":447,"children":448},{},[449],{"type":39,"tag":148,"props":450,"children":451},{},[452],{"type":45,"value":270},{"type":39,"tag":154,"props":454,"children":456},{"className":273,"code":455,"language":275,"meta":159,"style":159},"const phone = await client.lookups.v2.phoneNumbers(\"+15108675310\").fetch({\n    fields: \"line_type_intelligence\",\n});\nconsole.log(phone.lineTypeIntelligence);\n",[457],{"type":39,"tag":74,"props":458,"children":459},{"__ignoreMap":159},[460,468,476,484],{"type":39,"tag":165,"props":461,"children":462},{"class":167,"line":168},[463],{"type":39,"tag":165,"props":464,"children":465},{},[466],{"type":45,"value":467},"const phone = await client.lookups.v2.phoneNumbers(\"+15108675310\").fetch({\n",{"type":39,"tag":165,"props":469,"children":470},{"class":167,"line":177},[471],{"type":39,"tag":165,"props":472,"children":473},{},[474],{"type":45,"value":475},"    fields: \"line_type_intelligence\",\n",{"type":39,"tag":165,"props":477,"children":478},{"class":167,"line":186},[479],{"type":39,"tag":165,"props":480,"children":481},{},[482],{"type":45,"value":483},"});\n",{"type":39,"tag":165,"props":485,"children":486},{"class":167,"line":196},[487],{"type":39,"tag":165,"props":488,"children":489},{},[490],{"type":45,"value":491},"console.log(phone.lineTypeIntelligence);\n",{"type":39,"tag":48,"props":493,"children":494},{},[495,497,503,505,511,512,518,519,525,526,532,533,539,540,546,547,553,554],{"type":45,"value":496},"Line types: ",{"type":39,"tag":74,"props":498,"children":500},{"className":499},[],[501],{"type":45,"value":502},"mobile",{"type":45,"value":504},", ",{"type":39,"tag":74,"props":506,"children":508},{"className":507},[],[509],{"type":45,"value":510},"landline",{"type":45,"value":504},{"type":39,"tag":74,"props":513,"children":515},{"className":514},[],[516],{"type":45,"value":517},"voip",{"type":45,"value":504},{"type":39,"tag":74,"props":520,"children":522},{"className":521},[],[523],{"type":45,"value":524},"toll-free",{"type":45,"value":504},{"type":39,"tag":74,"props":527,"children":529},{"className":528},[],[530],{"type":45,"value":531},"fixedVoip",{"type":45,"value":504},{"type":39,"tag":74,"props":534,"children":536},{"className":535},[],[537],{"type":45,"value":538},"nonFixedVoip",{"type":45,"value":504},{"type":39,"tag":74,"props":541,"children":543},{"className":542},[],[544],{"type":45,"value":545},"personal",{"type":45,"value":504},{"type":39,"tag":74,"props":548,"children":550},{"className":549},[],[551],{"type":45,"value":552},"payphone",{"type":45,"value":504},{"type":39,"tag":74,"props":555,"children":557},{"className":556},[],[558],{"type":45,"value":559},"unknown",{"type":39,"tag":381,"props":561,"children":563},{"id":562},"multiple-packages-in-one-request",[564],{"type":45,"value":565},"Multiple Packages in One Request",{"type":39,"tag":48,"props":567,"children":568},{},[569],{"type":39,"tag":148,"props":570,"children":571},{},[572],{"type":45,"value":152},{"type":39,"tag":154,"props":574,"children":576},{"className":156,"code":575,"language":158,"meta":159,"style":159},"phone = client.lookups.v2.phone_numbers(\"+15108675310\").fetch(\n    fields=\"line_type_intelligence,sim_swap,caller_name\"\n)\n",[577],{"type":39,"tag":74,"props":578,"children":579},{"__ignoreMap":159},[580,587,595],{"type":39,"tag":165,"props":581,"children":582},{"class":167,"line":168},[583],{"type":39,"tag":165,"props":584,"children":585},{},[586],{"type":45,"value":413},{"type":39,"tag":165,"props":588,"children":589},{"class":167,"line":177},[590],{"type":39,"tag":165,"props":591,"children":592},{},[593],{"type":45,"value":594},"    fields=\"line_type_intelligence,sim_swap,caller_name\"\n",{"type":39,"tag":165,"props":596,"children":597},{"class":167,"line":186},[598],{"type":39,"tag":165,"props":599,"children":600},{},[601],{"type":45,"value":429},{"type":39,"tag":48,"props":603,"children":604},{},[605],{"type":39,"tag":148,"props":606,"children":607},{},[608],{"type":45,"value":270},{"type":39,"tag":154,"props":610,"children":612},{"className":273,"code":611,"language":275,"meta":159,"style":159},"const phone = await client.lookups.v2.phoneNumbers(\"+15108675310\").fetch({\n    fields: \"line_type_intelligence,sim_swap,caller_name\",\n});\n",[613],{"type":39,"tag":74,"props":614,"children":615},{"__ignoreMap":159},[616,623,631],{"type":39,"tag":165,"props":617,"children":618},{"class":167,"line":168},[619],{"type":39,"tag":165,"props":620,"children":621},{},[622],{"type":45,"value":467},{"type":39,"tag":165,"props":624,"children":625},{"class":167,"line":177},[626],{"type":39,"tag":165,"props":627,"children":628},{},[629],{"type":45,"value":630},"    fields: \"line_type_intelligence,sim_swap,caller_name\",\n",{"type":39,"tag":165,"props":632,"children":633},{"class":167,"line":186},[634],{"type":39,"tag":165,"props":635,"children":636},{},[637],{"type":45,"value":483},{"type":39,"tag":381,"props":639,"children":641},{"id":640},"validate-before-sending",[642],{"type":45,"value":643},"Validate Before Sending",{"type":39,"tag":48,"props":645,"children":646},{},[647],{"type":39,"tag":148,"props":648,"children":649},{},[650],{"type":45,"value":152},{"type":39,"tag":154,"props":652,"children":654},{"className":156,"code":653,"language":158,"meta":159,"style":159},"phone = client.lookups.v2.phone_numbers(\"+invalid\").fetch()\nif not phone.valid:\n    print(f\"Invalid number: {phone.validation_errors}\")\n    # Handle gracefully — do not attempt to send\n",[655],{"type":39,"tag":74,"props":656,"children":657},{"__ignoreMap":159},[658,666,674,682],{"type":39,"tag":165,"props":659,"children":660},{"class":167,"line":168},[661],{"type":39,"tag":165,"props":662,"children":663},{},[664],{"type":45,"value":665},"phone = client.lookups.v2.phone_numbers(\"+invalid\").fetch()\n",{"type":39,"tag":165,"props":667,"children":668},{"class":167,"line":177},[669],{"type":39,"tag":165,"props":670,"children":671},{},[672],{"type":45,"value":673},"if not phone.valid:\n",{"type":39,"tag":165,"props":675,"children":676},{"class":167,"line":186},[677],{"type":39,"tag":165,"props":678,"children":679},{},[680],{"type":45,"value":681},"    print(f\"Invalid number: {phone.validation_errors}\")\n",{"type":39,"tag":165,"props":683,"children":684},{"class":167,"line":196},[685],{"type":39,"tag":165,"props":686,"children":687},{},[688],{"type":45,"value":689},"    # Handle gracefully — do not attempt to send\n",{"type":39,"tag":48,"props":691,"children":692},{},[693],{"type":39,"tag":148,"props":694,"children":695},{},[696],{"type":45,"value":270},{"type":39,"tag":154,"props":698,"children":700},{"className":273,"code":699,"language":275,"meta":159,"style":159},"const phone = await client.lookups.v2.phoneNumbers(\"+invalid\").fetch();\nif (!phone.valid) {\n    console.log(\"Invalid number:\", phone.validationErrors);\n}\n",[701],{"type":39,"tag":74,"props":702,"children":703},{"__ignoreMap":159},[704,712,720,728],{"type":39,"tag":165,"props":705,"children":706},{"class":167,"line":168},[707],{"type":39,"tag":165,"props":708,"children":709},{},[710],{"type":45,"value":711},"const phone = await client.lookups.v2.phoneNumbers(\"+invalid\").fetch();\n",{"type":39,"tag":165,"props":713,"children":714},{"class":167,"line":177},[715],{"type":39,"tag":165,"props":716,"children":717},{},[718],{"type":45,"value":719},"if (!phone.valid) {\n",{"type":39,"tag":165,"props":721,"children":722},{"class":167,"line":186},[723],{"type":39,"tag":165,"props":724,"children":725},{},[726],{"type":45,"value":727},"    console.log(\"Invalid number:\", phone.validationErrors);\n",{"type":39,"tag":165,"props":729,"children":730},{"class":167,"line":196},[731],{"type":39,"tag":165,"props":732,"children":733},{},[734],{"type":45,"value":735},"}\n",{"type":39,"tag":381,"props":737,"children":739},{"id":738},"available-data-packages",[740],{"type":45,"value":741},"Available Data Packages",{"type":39,"tag":743,"props":744,"children":745},"table",{},[746,781],{"type":39,"tag":747,"props":748,"children":749},"thead",{},[750],{"type":39,"tag":751,"props":752,"children":753},"tr",{},[754,760,771,776],{"type":39,"tag":755,"props":756,"children":757},"th",{},[758],{"type":45,"value":759},"Package",{"type":39,"tag":755,"props":761,"children":762},{},[763,769],{"type":39,"tag":74,"props":764,"children":766},{"className":765},[],[767],{"type":45,"value":768},"fields",{"type":45,"value":770}," value",{"type":39,"tag":755,"props":772,"children":773},{},[774],{"type":45,"value":775},"Coverage",{"type":39,"tag":755,"props":777,"children":778},{},[779],{"type":45,"value":780},"Use case",{"type":39,"tag":782,"props":783,"children":784},"tbody",{},[785,813,840,867,893,919],{"type":39,"tag":751,"props":786,"children":787},{},[788,794,803,808],{"type":39,"tag":789,"props":790,"children":791},"td",{},[792],{"type":45,"value":793},"Line Type Intelligence",{"type":39,"tag":789,"props":795,"children":796},{},[797],{"type":39,"tag":74,"props":798,"children":800},{"className":799},[],[801],{"type":45,"value":802},"line_type_intelligence",{"type":39,"tag":789,"props":804,"children":805},{},[806],{"type":45,"value":807},"Worldwide",{"type":39,"tag":789,"props":809,"children":810},{},[811],{"type":45,"value":812},"Route by line type; block VoIP",{"type":39,"tag":751,"props":814,"children":815},{},[816,821,830,835],{"type":39,"tag":789,"props":817,"children":818},{},[819],{"type":45,"value":820},"Caller Name",{"type":39,"tag":789,"props":822,"children":823},{},[824],{"type":39,"tag":74,"props":825,"children":827},{"className":826},[],[828],{"type":45,"value":829},"caller_name",{"type":39,"tag":789,"props":831,"children":832},{},[833],{"type":45,"value":834},"US only",{"type":39,"tag":789,"props":836,"children":837},{},[838],{"type":45,"value":839},"Show caller ID",{"type":39,"tag":751,"props":841,"children":842},{},[843,848,857,862],{"type":39,"tag":789,"props":844,"children":845},{},[846],{"type":45,"value":847},"SIM Swap",{"type":39,"tag":789,"props":849,"children":850},{},[851],{"type":39,"tag":74,"props":852,"children":854},{"className":853},[],[855],{"type":45,"value":856},"sim_swap",{"type":39,"tag":789,"props":858,"children":859},{},[860],{"type":45,"value":861},"Select regions",{"type":39,"tag":789,"props":863,"children":864},{},[865],{"type":45,"value":866},"Fraud detection",{"type":39,"tag":751,"props":868,"children":869},{},[870,875,884,888],{"type":39,"tag":789,"props":871,"children":872},{},[873],{"type":45,"value":874},"Identity Match",{"type":39,"tag":789,"props":876,"children":877},{},[878],{"type":39,"tag":74,"props":879,"children":881},{"className":880},[],[882],{"type":45,"value":883},"identity_match",{"type":39,"tag":789,"props":885,"children":886},{},[887],{"type":45,"value":861},{"type":39,"tag":789,"props":889,"children":890},{},[891],{"type":45,"value":892},"Verify ownership",{"type":39,"tag":751,"props":894,"children":895},{},[896,901,910,914],{"type":39,"tag":789,"props":897,"children":898},{},[899],{"type":45,"value":900},"SMS Pumping Risk",{"type":39,"tag":789,"props":902,"children":903},{},[904],{"type":39,"tag":74,"props":905,"children":907},{"className":906},[],[908],{"type":45,"value":909},"sms_pumping_risk",{"type":39,"tag":789,"props":911,"children":912},{},[913],{"type":45,"value":807},{"type":39,"tag":789,"props":915,"children":916},{},[917],{"type":45,"value":918},"Fraud prevention",{"type":39,"tag":751,"props":920,"children":921},{},[922,927,936,940],{"type":39,"tag":789,"props":923,"children":924},{},[925],{"type":45,"value":926},"Reassigned Number",{"type":39,"tag":789,"props":928,"children":929},{},[930],{"type":39,"tag":74,"props":931,"children":933},{"className":932},[],[934],{"type":45,"value":935},"reassigned_number",{"type":39,"tag":789,"props":937,"children":938},{},[939],{"type":45,"value":834},{"type":39,"tag":789,"props":941,"children":942},{},[943],{"type":45,"value":944},"Check if recycled",{"type":39,"tag":54,"props":946,"children":947},{},[],{"type":39,"tag":40,"props":949,"children":951},{"id":950},"common-errors",[952],{"type":45,"value":953},"Common Errors",{"type":39,"tag":743,"props":955,"children":956},{},[957,978],{"type":39,"tag":747,"props":958,"children":959},{},[960],{"type":39,"tag":751,"props":961,"children":962},{},[963,968,973],{"type":39,"tag":755,"props":964,"children":965},{},[966],{"type":45,"value":967},"Code",{"type":39,"tag":755,"props":969,"children":970},{},[971],{"type":45,"value":972},"Meaning",{"type":39,"tag":755,"props":974,"children":975},{},[976],{"type":45,"value":977},"Fix",{"type":39,"tag":782,"props":979,"children":980},{},[981,999],{"type":39,"tag":751,"props":982,"children":983},{},[984,989,994],{"type":39,"tag":789,"props":985,"children":986},{},[987],{"type":45,"value":988},"20404",{"type":39,"tag":789,"props":990,"children":991},{},[992],{"type":45,"value":993},"Phone number not found",{"type":39,"tag":789,"props":995,"children":996},{},[997],{"type":45,"value":998},"Number may be invalid or unsupported format",{"type":39,"tag":751,"props":1000,"children":1001},{},[1002,1007,1012],{"type":39,"tag":789,"props":1003,"children":1004},{},[1005],{"type":45,"value":1006},"60601",{"type":39,"tag":789,"props":1008,"children":1009},{},[1010],{"type":45,"value":1011},"Data package not available for this region",{"type":39,"tag":789,"props":1013,"children":1014},{},[1015],{"type":45,"value":1016},"Check regional coverage before requesting package",{"type":39,"tag":54,"props":1018,"children":1019},{},[],{"type":39,"tag":40,"props":1021,"children":1023},{"id":1022},"cannot",[1024],{"type":45,"value":1025},"CANNOT",{"type":39,"tag":64,"props":1027,"children":1028},{},[1029,1039,1049,1059,1069,1079,1089,1099,1109,1119,1129],{"type":39,"tag":68,"props":1030,"children":1031},{},[1032,1037],{"type":39,"tag":148,"props":1033,"children":1034},{},[1035],{"type":45,"value":1036},"Cannot look up by name or address",{"type":45,"value":1038}," — Input is always a phone number. No reverse search.",{"type":39,"tag":68,"props":1040,"children":1041},{},[1042,1047],{"type":39,"tag":148,"props":1043,"children":1044},{},[1045],{"type":45,"value":1046},"Cannot get caller_name for non-US numbers",{"type":45,"value":1048}," — Returns error 60600 (out of coverage).",{"type":39,"tag":68,"props":1050,"children":1051},{},[1052,1057],{"type":39,"tag":148,"props":1053,"children":1054},{},[1055],{"type":45,"value":1056},"Cannot detect conditional call forwarding",{"type":45,"value":1058}," — Only unconditional forwarding is detected, and only for UK carriers.",{"type":39,"tag":68,"props":1060,"children":1061},{},[1062,1067],{"type":39,"tag":148,"props":1063,"children":1064},{},[1065],{"type":45,"value":1066},"Cannot guarantee SIM swap data without carrier registration",{"type":45,"value":1068}," — Returns error 60606 until carrier approval is in place.",{"type":39,"tag":68,"props":1070,"children":1071},{},[1072,1077],{"type":39,"tag":148,"props":1073,"children":1074},{},[1075],{"type":45,"value":1076},"Cannot use Reassigned Number outside the US",{"type":45,"value":1078}," — US-only dataset with monthly update cadence.",{"type":39,"tag":68,"props":1080,"children":1081},{},[1082,1087],{"type":39,"tag":148,"props":1083,"children":1084},{},[1085],{"type":45,"value":1086},"Cannot get real-time SMS pumping scores",{"type":45,"value":1088}," — Scores are statistical models, not live traffic analysis.",{"type":39,"tag":68,"props":1090,"children":1091},{},[1092,1097],{"type":39,"tag":148,"props":1093,"children":1094},{},[1095],{"type":45,"value":1096},"Cannot write data",{"type":45,"value":1098}," — Lookup v2 is read-only (GET only). The one exception is Line Type Override (POST\u002FDELETE).",{"type":39,"tag":68,"props":1100,"children":1101},{},[1102,1107],{"type":39,"tag":148,"props":1103,"children":1104},{},[1105],{"type":45,"value":1106},"Cannot batch multiple phone numbers in one request",{"type":45,"value":1108}," — One number per API call. Loop for bulk lookups.",{"type":39,"tag":68,"props":1110,"children":1111},{},[1112,1117],{"type":39,"tag":148,"props":1113,"children":1114},{},[1115],{"type":45,"value":1116},"Cannot avoid billing on caller_name requests that return no data",{"type":45,"value":1118}," — Billed per request regardless of whether data is returned.",{"type":39,"tag":68,"props":1120,"children":1121},{},[1122,1127],{"type":39,"tag":148,"props":1123,"children":1124},{},[1125],{"type":45,"value":1126},"Cannot use Phone Number Quality Score or Pre-fill without provisioning",{"type":45,"value":1128}," — Returns 60606. Contact Twilio sales to enable.",{"type":39,"tag":68,"props":1130,"children":1131},{},[1132,1137],{"type":39,"tag":148,"props":1133,"children":1134},{},[1135],{"type":45,"value":1136},"Cannot guarantee deliverability from a valid lookup",{"type":45,"value":1138}," — A valid number may still be unreachable (carrier issues, ported, etc.)",{"type":39,"tag":54,"props":1140,"children":1141},{},[],{"type":39,"tag":40,"props":1143,"children":1145},{"id":1144},"next-steps",[1146],{"type":45,"value":1147},"Next Steps",{"type":39,"tag":64,"props":1149,"children":1150},{},[1151,1167],{"type":39,"tag":68,"props":1152,"children":1153},{},[1154,1159,1161],{"type":39,"tag":148,"props":1155,"children":1156},{},[1157],{"type":45,"value":1158},"Send SMS after validation:",{"type":45,"value":1160}," ",{"type":39,"tag":74,"props":1162,"children":1164},{"className":1163},[],[1165],{"type":45,"value":1166},"twilio-sms-send-message",{"type":39,"tag":68,"props":1168,"children":1169},{},[1170,1175,1176],{"type":39,"tag":148,"props":1171,"children":1172},{},[1173],{"type":45,"value":1174},"Send OTP after validation:",{"type":45,"value":1160},{"type":39,"tag":74,"props":1177,"children":1179},{"className":1178},[],[1180],{"type":45,"value":1181},"twilio-verify-send-otp",{"type":39,"tag":1183,"props":1184,"children":1185},"style",{},[1186],{"type":45,"value":1187},"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":1189,"total":1292},[1190,1201,1221,1232,1244,1259,1276],{"slug":79,"name":79,"fn":1191,"description":1192,"org":1193,"tags":1194,"stars":23,"repoUrl":24,"updatedAt":1200},"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},[1195,1196,1199],{"name":20,"slug":21,"type":15},{"name":1197,"slug":1198,"type":15},"Communications","communications",{"name":17,"slug":18,"type":15},"2026-08-01T05:43:28.968968",{"slug":1202,"name":1202,"fn":1203,"description":1204,"org":1205,"tags":1206,"stars":23,"repoUrl":24,"updatedAt":1220},"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},[1207,1210,1213,1216,1219],{"name":1208,"slug":1209,"type":15},"Agents","agents",{"name":1211,"slug":1212,"type":15},"AI","ai",{"name":1214,"slug":1215,"type":15},"Coaching","coaching",{"name":1217,"slug":1218,"type":15},"QA","qa",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:58.250609",{"slug":1222,"name":1222,"fn":1223,"description":1224,"org":1225,"tags":1226,"stars":23,"repoUrl":24,"updatedAt":1231},"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},[1227,1228,1229,1230],{"name":1208,"slug":1209,"type":15},{"name":20,"slug":21,"type":15},{"name":1197,"slug":1198,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:06:05.217098",{"slug":1233,"name":1233,"fn":1234,"description":1235,"org":1236,"tags":1237,"stars":23,"repoUrl":24,"updatedAt":1243},"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},[1238,1239,1242],{"name":1208,"slug":1209,"type":15},{"name":1240,"slug":1241,"type":15},"Architecture","architecture",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:48.883723",{"slug":1245,"name":1245,"fn":1246,"description":1247,"org":1248,"tags":1249,"stars":23,"repoUrl":24,"updatedAt":1258},"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},[1250,1253,1256,1257],{"name":1251,"slug":1252,"type":15},"Audio","audio",{"name":1254,"slug":1255,"type":15},"Compliance","compliance",{"name":1217,"slug":1218,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.268412",{"slug":1260,"name":1260,"fn":1261,"description":1262,"org":1263,"tags":1264,"stars":23,"repoUrl":24,"updatedAt":1275},"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},[1265,1268,1271,1274],{"name":1266,"slug":1267,"type":15},"CLI","cli",{"name":1269,"slug":1270,"type":15},"Local Development","local-development",{"name":1272,"slug":1273,"type":15},"Operations","operations",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:54.925664",{"slug":1277,"name":1277,"fn":1278,"description":1279,"org":1280,"tags":1281,"stars":23,"repoUrl":24,"updatedAt":1291},"twilio-compliance-onboarding","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},[1282,1283,1286,1287,1288],{"name":1254,"slug":1255,"type":15},{"name":1284,"slug":1285,"type":15},"Messaging","messaging",{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":1289,"slug":1290,"type":15},"WhatsApp","whatsapp","2026-07-17T06:05:47.897229",57,{"items":1294,"total":1292},[1295,1301,1309,1316,1322,1329,1336,1344,1358,1371,1387,1405],{"slug":79,"name":79,"fn":1191,"description":1192,"org":1296,"tags":1297,"stars":23,"repoUrl":24,"updatedAt":1200},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1298,1299,1300],{"name":20,"slug":21,"type":15},{"name":1197,"slug":1198,"type":15},{"name":17,"slug":18,"type":15},{"slug":1202,"name":1202,"fn":1203,"description":1204,"org":1302,"tags":1303,"stars":23,"repoUrl":24,"updatedAt":1220},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1304,1305,1306,1307,1308],{"name":1208,"slug":1209,"type":15},{"name":1211,"slug":1212,"type":15},{"name":1214,"slug":1215,"type":15},{"name":1217,"slug":1218,"type":15},{"name":9,"slug":8,"type":15},{"slug":1222,"name":1222,"fn":1223,"description":1224,"org":1310,"tags":1311,"stars":23,"repoUrl":24,"updatedAt":1231},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1312,1313,1314,1315],{"name":1208,"slug":1209,"type":15},{"name":20,"slug":21,"type":15},{"name":1197,"slug":1198,"type":15},{"name":9,"slug":8,"type":15},{"slug":1233,"name":1233,"fn":1234,"description":1235,"org":1317,"tags":1318,"stars":23,"repoUrl":24,"updatedAt":1243},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1319,1320,1321],{"name":1208,"slug":1209,"type":15},{"name":1240,"slug":1241,"type":15},{"name":9,"slug":8,"type":15},{"slug":1245,"name":1245,"fn":1246,"description":1247,"org":1323,"tags":1324,"stars":23,"repoUrl":24,"updatedAt":1258},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1325,1326,1327,1328],{"name":1251,"slug":1252,"type":15},{"name":1254,"slug":1255,"type":15},{"name":1217,"slug":1218,"type":15},{"name":9,"slug":8,"type":15},{"slug":1260,"name":1260,"fn":1261,"description":1262,"org":1330,"tags":1331,"stars":23,"repoUrl":24,"updatedAt":1275},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1332,1333,1334,1335],{"name":1266,"slug":1267,"type":15},{"name":1269,"slug":1270,"type":15},{"name":1272,"slug":1273,"type":15},{"name":9,"slug":8,"type":15},{"slug":1277,"name":1277,"fn":1278,"description":1279,"org":1337,"tags":1338,"stars":23,"repoUrl":24,"updatedAt":1291},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1339,1340,1341,1342,1343],{"name":1254,"slug":1255,"type":15},{"name":1284,"slug":1285,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":1289,"slug":1290,"type":15},{"slug":1345,"name":1345,"fn":1346,"description":1347,"org":1348,"tags":1349,"stars":23,"repoUrl":24,"updatedAt":1357},"twilio-compliance-traffic","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},[1350,1351,1352,1355,1356],{"name":1254,"slug":1255,"type":15},{"name":1284,"slug":1285,"type":15},{"name":1353,"slug":1354,"type":15},"Regulatory Compliance","regulatory-compliance",{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.952779",{"slug":1359,"name":1359,"fn":1360,"description":1361,"org":1362,"tags":1363,"stars":23,"repoUrl":24,"updatedAt":1370},"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},[1364,1365,1366,1369],{"name":1251,"slug":1252,"type":15},{"name":1197,"slug":1198,"type":15},{"name":1367,"slug":1368,"type":15},"Meetings","meetings",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.603708",{"slug":1372,"name":1372,"fn":1373,"description":1374,"org":1375,"tags":1376,"stars":23,"repoUrl":24,"updatedAt":1386},"twilio-content-template-builder","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},[1377,1380,1381,1382,1385],{"name":1378,"slug":1379,"type":15},"Email","email",{"name":1284,"slug":1285,"type":15},{"name":17,"slug":18,"type":15},{"name":1383,"slug":1384,"type":15},"Templates","templates",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:26.637309",{"slug":1388,"name":1388,"fn":1389,"description":1390,"org":1391,"tags":1392,"stars":23,"repoUrl":24,"updatedAt":1404},"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},[1393,1394,1397,1400,1403],{"name":1208,"slug":1209,"type":15},{"name":1395,"slug":1396,"type":15},"Analytics","analytics",{"name":1398,"slug":1399,"type":15},"Monitoring","monitoring",{"name":1401,"slug":1402,"type":15},"NLP","nlp",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:52.545387",{"slug":1406,"name":1406,"fn":1407,"description":1408,"org":1409,"tags":1410,"stars":23,"repoUrl":24,"updatedAt":1416},"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},[1411,1412,1415],{"name":1208,"slug":1209,"type":15},{"name":1413,"slug":1414,"type":15},"Memory","memory",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:19.526724"]