[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-twilio-twilio-sendgrid-engagement-quality":3,"mdc--1k2y54-key":35,"related-repo-twilio-twilio-sendgrid-engagement-quality":1266,"related-org-twilio-twilio-sendgrid-engagement-quality":1376},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":33,"mdContent":34},"twilio-sendgrid-engagement-quality","monitor email health with engagement scores","Monitor email program health with SendGrid Engagement Quality (SEQ) scores. Covers the SEQ API endpoints, the 5 scoring metrics (engagement recency, open rate, bounce classification, bounce rate, spam rate), eligibility requirements, and interpreting scores for deliverability improvement. Use when diagnosing SendGrid deliverability issues or monitoring sender reputation. Requires a SendGrid API key (SG.-prefix) — not applicable to the Twilio Email API (comms.twilio.com).\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},"SendGrid","sendgrid","tag",{"name":17,"slug":18,"type":15},"Monitoring","monitoring",{"name":20,"slug":21,"type":15},"Analytics","analytics",{"name":23,"slug":24,"type":15},"Email","email",25,"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai","2026-07-17T06:07:19.439123",null,7,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":28},[],"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai\u002Ftree\u002FHEAD\u002Fskills\u002Fsendgrid\u002Ftwilio-sendgrid-engagement-quality","---\nname: twilio-sendgrid-engagement-quality\ndescription: >\n  Monitor email program health with SendGrid Engagement Quality (SEQ)\n  scores. Covers the SEQ API endpoints, the 5 scoring metrics\n  (engagement recency, open rate, bounce classification, bounce rate,\n  spam rate), eligibility requirements, and interpreting scores for\n  deliverability improvement. Use when diagnosing SendGrid deliverability\n  issues or monitoring sender reputation. Requires a SendGrid API key\n  (SG.-prefix) — not applicable to the Twilio Email API (comms.twilio.com).\n---\n\n## Overview\n\nSendGrid Engagement Quality (SEQ) scores measure how \"wanted\" your email is by recipients. Higher scores (1-5 scale) correlate with better inbox placement. SEQ is a diagnostic tool — it tells you where your email program is healthy and where it needs improvement.\n\n**Key insight:** SEQ scores are correlated with deliverability. A higher score means more emails land in inboxes, not spam folders.\n\n---\n\n## Eligibility Requirements\n\nYour account must meet ALL conditions to receive scores:\n1. **Pro or Premier Email API plan** — SEQ is not available on Free or Essentials plans\n2. **Open tracking enabled** in SendGrid settings\n3. **Minimum 1,000 messages sent** in the previous 30 days\n\nIf not eligible, the `score` and `metrics` fields are omitted from API responses entirely.\n\n---\n\n## The 5 Metrics\n\nAll scores range from **1 (poor) to 5 (excellent)**.\n\n| Metric | What it measures | How to improve |\n|--------|-----------------|---------------|\n| **engagement_recency** | Are you sending to an engaged audience? Based on how regularly messages are opened and clicked. | Remove inactive subscribers. Implement re-engagement campaigns before pruning. |\n| **open_rate** | Degree to which your audience opens your messages. | Improve subject lines. Segment audiences by engagement level. |\n| **bounce_classification** | Rejection by mailbox providers due to reputation or spam-like content. | Fix content triggering spam filters. Warm IPs properly. Monitor domain reputation. |\n| **bounce_rate** | Are you sending to addresses that don't exist? Based on permanent bounces to invalid mailboxes. | Implement double opt-in. Clean lists quarterly. Use Email Validation API before sending. |\n| **spam_rate** | Are recipients marking your email as spam? Based on recipients who open then report spam. | Only send to opted-in recipients. Make unsubscribe easy. Match content to expectations set at signup. |\n\n**Note:** The overall `score` is NOT a simple average of the 5 metrics — the weighting formula is opaque. A single low metric (e.g., spam_rate = 1) can drag the overall score significantly.\n\n---\n\n## API Endpoints\n\n### Get Your Scores (Date Range)\n\n`GET \u002Fv3\u002Fengagementquality\u002Fscores`\n\n| Parameter | Required | Description |\n|-----------|----------|-------------|\n| `from` | Yes | Start date (YYYY-MM-DD, UTC) |\n| `to` | Yes | End date (YYYY-MM-DD, UTC) |\n\n**Python**\n```python\nimport os, requests\n\nheaders = {\"Authorization\": f\"Bearer {os.environ['SENDGRID_API_KEY']}\"}\nresponse = requests.get(\n    \"https:\u002F\u002Fapi.sendgrid.com\u002Fv3\u002Fengagementquality\u002Fscores\",\n    params={\"from\": \"2026-04-01\", \"to\": \"2026-04-23\"},\n    headers=headers\n)\n\nif response.status_code == 200:\n    for entry in response.json()[\"result\"]:\n        print(f\"Date: {entry['date']}, Score: {entry.get('score', 'N\u002FA')}\")\n        metrics = entry.get(\"metrics\", {})\n        for metric, value in metrics.items():\n            print(f\"  {metric}: {value}\")\nelif response.status_code == 202:\n    print(\"Scores not yet calculated — try again later\")\n```\n\n### Get Subuser Scores (Single Date)\n\n`GET \u002Fv3\u002Fengagementquality\u002Fsubusers\u002Fscores`\n\n| Parameter | Required | Description |\n|-----------|----------|-------------|\n| `date` | Yes | Date (YYYY-MM-DD, UTC) |\n| `limit` | No | Results per page (default 1000, max 1000) |\n| `after_key` | No | Pagination cursor |\n\nReturns paginated results with `_metadata.next_params.after_key` for pagination.\n\n---\n\n## Response Patterns\n\n**200 OK** — Scores available:\n```json\n{\n    \"result\": [{\n        \"user_id\": \"12345\",\n        \"username\": \"myaccount\",\n        \"date\": \"2026-04-22\",\n        \"score\": 4,\n        \"metrics\": {\n            \"engagement_recency\": 4,\n            \"open_rate\": 5,\n            \"bounce_classification\": 3,\n            \"bounce_rate\": 4,\n            \"spam_rate\": 5\n        }\n    }]\n}\n```\n\n**202 Accepted** — Scores are calculated asynchronously. Not yet available for the requested date. Retry later.\n\n**Score or metrics omitted** — Account\u002Fsubuser is not eligible (open tracking off or \u003C1,000 sends in 30 days).\n\n---\n\n## CANNOT\n\n- **Cannot get scores without open tracking enabled** — This is a hard prerequisite. No tracking = no score.\n- **Cannot get scores with fewer than 1,000 messages in 30 days** — Low-volume senders are ineligible.\n- **Cannot query more than 90 days in the past** — Date range is limited to the last 90 days.\n- **Cannot get real-time scores** — Scores are calculated asynchronously (daily). A `202` response means \"not ready yet.\"\n- **Cannot determine the exact weighting formula** — The overall score is not a simple average. Individual metric weights are not published.\n- **Email Validation API is a separate paid feature** — Referenced in bounce_rate improvement guidance, but requires Pro or Premier plan. Not included in base plan.\n- **Subuser endpoint accepts only a single date** — Not a date range. Query one day at a time.\n\n---\n\n## Next Steps\n\n- **Improve bounce rate:** `twilio-sendgrid-suppressions`\n- **Track delivery events:** `twilio-sendgrid-webhooks`\n- **Account setup:** `twilio-sendgrid-account-setup`\n",{"data":36,"body":37},{"name":4,"description":6},{"type":38,"children":39},"root",[40,49,55,66,70,76,81,116,138,141,147,159,297,314,317,323,330,339,409,417,582,588,597,685,698,701,707,717,1091,1101,1111,1114,1120,1202,1205,1211,1260],{"type":41,"tag":42,"props":43,"children":45},"element","h2",{"id":44},"overview",[46],{"type":47,"value":48},"text","Overview",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53],{"type":47,"value":54},"SendGrid Engagement Quality (SEQ) scores measure how \"wanted\" your email is by recipients. Higher scores (1-5 scale) correlate with better inbox placement. SEQ is a diagnostic tool — it tells you where your email program is healthy and where it needs improvement.",{"type":41,"tag":50,"props":56,"children":57},{},[58,64],{"type":41,"tag":59,"props":60,"children":61},"strong",{},[62],{"type":47,"value":63},"Key insight:",{"type":47,"value":65}," SEQ scores are correlated with deliverability. A higher score means more emails land in inboxes, not spam folders.",{"type":41,"tag":67,"props":68,"children":69},"hr",{},[],{"type":41,"tag":42,"props":71,"children":73},{"id":72},"eligibility-requirements",[74],{"type":47,"value":75},"Eligibility Requirements",{"type":41,"tag":50,"props":77,"children":78},{},[79],{"type":47,"value":80},"Your account must meet ALL conditions to receive scores:",{"type":41,"tag":82,"props":83,"children":84},"ol",{},[85,96,106],{"type":41,"tag":86,"props":87,"children":88},"li",{},[89,94],{"type":41,"tag":59,"props":90,"children":91},{},[92],{"type":47,"value":93},"Pro or Premier Email API plan",{"type":47,"value":95}," — SEQ is not available on Free or Essentials plans",{"type":41,"tag":86,"props":97,"children":98},{},[99,104],{"type":41,"tag":59,"props":100,"children":101},{},[102],{"type":47,"value":103},"Open tracking enabled",{"type":47,"value":105}," in SendGrid settings",{"type":41,"tag":86,"props":107,"children":108},{},[109,114],{"type":41,"tag":59,"props":110,"children":111},{},[112],{"type":47,"value":113},"Minimum 1,000 messages sent",{"type":47,"value":115}," in the previous 30 days",{"type":41,"tag":50,"props":117,"children":118},{},[119,121,128,130,136],{"type":47,"value":120},"If not eligible, the ",{"type":41,"tag":122,"props":123,"children":125},"code",{"className":124},[],[126],{"type":47,"value":127},"score",{"type":47,"value":129}," and ",{"type":41,"tag":122,"props":131,"children":133},{"className":132},[],[134],{"type":47,"value":135},"metrics",{"type":47,"value":137}," fields are omitted from API responses entirely.",{"type":41,"tag":67,"props":139,"children":140},{},[],{"type":41,"tag":42,"props":142,"children":144},{"id":143},"the-5-metrics",[145],{"type":47,"value":146},"The 5 Metrics",{"type":41,"tag":50,"props":148,"children":149},{},[150,152,157],{"type":47,"value":151},"All scores range from ",{"type":41,"tag":59,"props":153,"children":154},{},[155],{"type":47,"value":156},"1 (poor) to 5 (excellent)",{"type":47,"value":158},".",{"type":41,"tag":160,"props":161,"children":162},"table",{},[163,187],{"type":41,"tag":164,"props":165,"children":166},"thead",{},[167],{"type":41,"tag":168,"props":169,"children":170},"tr",{},[171,177,182],{"type":41,"tag":172,"props":173,"children":174},"th",{},[175],{"type":47,"value":176},"Metric",{"type":41,"tag":172,"props":178,"children":179},{},[180],{"type":47,"value":181},"What it measures",{"type":41,"tag":172,"props":183,"children":184},{},[185],{"type":47,"value":186},"How to improve",{"type":41,"tag":188,"props":189,"children":190},"tbody",{},[191,213,234,255,276],{"type":41,"tag":168,"props":192,"children":193},{},[194,203,208],{"type":41,"tag":195,"props":196,"children":197},"td",{},[198],{"type":41,"tag":59,"props":199,"children":200},{},[201],{"type":47,"value":202},"engagement_recency",{"type":41,"tag":195,"props":204,"children":205},{},[206],{"type":47,"value":207},"Are you sending to an engaged audience? Based on how regularly messages are opened and clicked.",{"type":41,"tag":195,"props":209,"children":210},{},[211],{"type":47,"value":212},"Remove inactive subscribers. Implement re-engagement campaigns before pruning.",{"type":41,"tag":168,"props":214,"children":215},{},[216,224,229],{"type":41,"tag":195,"props":217,"children":218},{},[219],{"type":41,"tag":59,"props":220,"children":221},{},[222],{"type":47,"value":223},"open_rate",{"type":41,"tag":195,"props":225,"children":226},{},[227],{"type":47,"value":228},"Degree to which your audience opens your messages.",{"type":41,"tag":195,"props":230,"children":231},{},[232],{"type":47,"value":233},"Improve subject lines. Segment audiences by engagement level.",{"type":41,"tag":168,"props":235,"children":236},{},[237,245,250],{"type":41,"tag":195,"props":238,"children":239},{},[240],{"type":41,"tag":59,"props":241,"children":242},{},[243],{"type":47,"value":244},"bounce_classification",{"type":41,"tag":195,"props":246,"children":247},{},[248],{"type":47,"value":249},"Rejection by mailbox providers due to reputation or spam-like content.",{"type":41,"tag":195,"props":251,"children":252},{},[253],{"type":47,"value":254},"Fix content triggering spam filters. Warm IPs properly. Monitor domain reputation.",{"type":41,"tag":168,"props":256,"children":257},{},[258,266,271],{"type":41,"tag":195,"props":259,"children":260},{},[261],{"type":41,"tag":59,"props":262,"children":263},{},[264],{"type":47,"value":265},"bounce_rate",{"type":41,"tag":195,"props":267,"children":268},{},[269],{"type":47,"value":270},"Are you sending to addresses that don't exist? Based on permanent bounces to invalid mailboxes.",{"type":41,"tag":195,"props":272,"children":273},{},[274],{"type":47,"value":275},"Implement double opt-in. Clean lists quarterly. Use Email Validation API before sending.",{"type":41,"tag":168,"props":277,"children":278},{},[279,287,292],{"type":41,"tag":195,"props":280,"children":281},{},[282],{"type":41,"tag":59,"props":283,"children":284},{},[285],{"type":47,"value":286},"spam_rate",{"type":41,"tag":195,"props":288,"children":289},{},[290],{"type":47,"value":291},"Are recipients marking your email as spam? Based on recipients who open then report spam.",{"type":41,"tag":195,"props":293,"children":294},{},[295],{"type":47,"value":296},"Only send to opted-in recipients. Make unsubscribe easy. Match content to expectations set at signup.",{"type":41,"tag":50,"props":298,"children":299},{},[300,305,307,312],{"type":41,"tag":59,"props":301,"children":302},{},[303],{"type":47,"value":304},"Note:",{"type":47,"value":306}," The overall ",{"type":41,"tag":122,"props":308,"children":310},{"className":309},[],[311],{"type":47,"value":127},{"type":47,"value":313}," is NOT a simple average of the 5 metrics — the weighting formula is opaque. A single low metric (e.g., spam_rate = 1) can drag the overall score significantly.",{"type":41,"tag":67,"props":315,"children":316},{},[],{"type":41,"tag":42,"props":318,"children":320},{"id":319},"api-endpoints",[321],{"type":47,"value":322},"API Endpoints",{"type":41,"tag":324,"props":325,"children":327},"h3",{"id":326},"get-your-scores-date-range",[328],{"type":47,"value":329},"Get Your Scores (Date Range)",{"type":41,"tag":50,"props":331,"children":332},{},[333],{"type":41,"tag":122,"props":334,"children":336},{"className":335},[],[337],{"type":47,"value":338},"GET \u002Fv3\u002Fengagementquality\u002Fscores",{"type":41,"tag":160,"props":340,"children":341},{},[342,363],{"type":41,"tag":164,"props":343,"children":344},{},[345],{"type":41,"tag":168,"props":346,"children":347},{},[348,353,358],{"type":41,"tag":172,"props":349,"children":350},{},[351],{"type":47,"value":352},"Parameter",{"type":41,"tag":172,"props":354,"children":355},{},[356],{"type":47,"value":357},"Required",{"type":41,"tag":172,"props":359,"children":360},{},[361],{"type":47,"value":362},"Description",{"type":41,"tag":188,"props":364,"children":365},{},[366,388],{"type":41,"tag":168,"props":367,"children":368},{},[369,378,383],{"type":41,"tag":195,"props":370,"children":371},{},[372],{"type":41,"tag":122,"props":373,"children":375},{"className":374},[],[376],{"type":47,"value":377},"from",{"type":41,"tag":195,"props":379,"children":380},{},[381],{"type":47,"value":382},"Yes",{"type":41,"tag":195,"props":384,"children":385},{},[386],{"type":47,"value":387},"Start date (YYYY-MM-DD, UTC)",{"type":41,"tag":168,"props":389,"children":390},{},[391,400,404],{"type":41,"tag":195,"props":392,"children":393},{},[394],{"type":41,"tag":122,"props":395,"children":397},{"className":396},[],[398],{"type":47,"value":399},"to",{"type":41,"tag":195,"props":401,"children":402},{},[403],{"type":47,"value":382},{"type":41,"tag":195,"props":405,"children":406},{},[407],{"type":47,"value":408},"End date (YYYY-MM-DD, UTC)",{"type":41,"tag":50,"props":410,"children":411},{},[412],{"type":41,"tag":59,"props":413,"children":414},{},[415],{"type":47,"value":416},"Python",{"type":41,"tag":418,"props":419,"children":424},"pre",{"className":420,"code":421,"language":422,"meta":423,"style":423},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import os, requests\n\nheaders = {\"Authorization\": f\"Bearer {os.environ['SENDGRID_API_KEY']}\"}\nresponse = requests.get(\n    \"https:\u002F\u002Fapi.sendgrid.com\u002Fv3\u002Fengagementquality\u002Fscores\",\n    params={\"from\": \"2026-04-01\", \"to\": \"2026-04-23\"},\n    headers=headers\n)\n\nif response.status_code == 200:\n    for entry in response.json()[\"result\"]:\n        print(f\"Date: {entry['date']}, Score: {entry.get('score', 'N\u002FA')}\")\n        metrics = entry.get(\"metrics\", {})\n        for metric, value in metrics.items():\n            print(f\"  {metric}: {value}\")\nelif response.status_code == 202:\n    print(\"Scores not yet calculated — try again later\")\n","python","",[425],{"type":41,"tag":122,"props":426,"children":427},{"__ignoreMap":423},[428,439,449,458,467,476,485,493,502,510,519,528,537,546,555,564,573],{"type":41,"tag":429,"props":430,"children":433},"span",{"class":431,"line":432},"line",1,[434],{"type":41,"tag":429,"props":435,"children":436},{},[437],{"type":47,"value":438},"import os, requests\n",{"type":41,"tag":429,"props":440,"children":442},{"class":431,"line":441},2,[443],{"type":41,"tag":429,"props":444,"children":446},{"emptyLinePlaceholder":445},true,[447],{"type":47,"value":448},"\n",{"type":41,"tag":429,"props":450,"children":452},{"class":431,"line":451},3,[453],{"type":41,"tag":429,"props":454,"children":455},{},[456],{"type":47,"value":457},"headers = {\"Authorization\": f\"Bearer {os.environ['SENDGRID_API_KEY']}\"}\n",{"type":41,"tag":429,"props":459,"children":461},{"class":431,"line":460},4,[462],{"type":41,"tag":429,"props":463,"children":464},{},[465],{"type":47,"value":466},"response = requests.get(\n",{"type":41,"tag":429,"props":468,"children":470},{"class":431,"line":469},5,[471],{"type":41,"tag":429,"props":472,"children":473},{},[474],{"type":47,"value":475},"    \"https:\u002F\u002Fapi.sendgrid.com\u002Fv3\u002Fengagementquality\u002Fscores\",\n",{"type":41,"tag":429,"props":477,"children":479},{"class":431,"line":478},6,[480],{"type":41,"tag":429,"props":481,"children":482},{},[483],{"type":47,"value":484},"    params={\"from\": \"2026-04-01\", \"to\": \"2026-04-23\"},\n",{"type":41,"tag":429,"props":486,"children":487},{"class":431,"line":29},[488],{"type":41,"tag":429,"props":489,"children":490},{},[491],{"type":47,"value":492},"    headers=headers\n",{"type":41,"tag":429,"props":494,"children":496},{"class":431,"line":495},8,[497],{"type":41,"tag":429,"props":498,"children":499},{},[500],{"type":47,"value":501},")\n",{"type":41,"tag":429,"props":503,"children":505},{"class":431,"line":504},9,[506],{"type":41,"tag":429,"props":507,"children":508},{"emptyLinePlaceholder":445},[509],{"type":47,"value":448},{"type":41,"tag":429,"props":511,"children":513},{"class":431,"line":512},10,[514],{"type":41,"tag":429,"props":515,"children":516},{},[517],{"type":47,"value":518},"if response.status_code == 200:\n",{"type":41,"tag":429,"props":520,"children":522},{"class":431,"line":521},11,[523],{"type":41,"tag":429,"props":524,"children":525},{},[526],{"type":47,"value":527},"    for entry in response.json()[\"result\"]:\n",{"type":41,"tag":429,"props":529,"children":531},{"class":431,"line":530},12,[532],{"type":41,"tag":429,"props":533,"children":534},{},[535],{"type":47,"value":536},"        print(f\"Date: {entry['date']}, Score: {entry.get('score', 'N\u002FA')}\")\n",{"type":41,"tag":429,"props":538,"children":540},{"class":431,"line":539},13,[541],{"type":41,"tag":429,"props":542,"children":543},{},[544],{"type":47,"value":545},"        metrics = entry.get(\"metrics\", {})\n",{"type":41,"tag":429,"props":547,"children":549},{"class":431,"line":548},14,[550],{"type":41,"tag":429,"props":551,"children":552},{},[553],{"type":47,"value":554},"        for metric, value in metrics.items():\n",{"type":41,"tag":429,"props":556,"children":558},{"class":431,"line":557},15,[559],{"type":41,"tag":429,"props":560,"children":561},{},[562],{"type":47,"value":563},"            print(f\"  {metric}: {value}\")\n",{"type":41,"tag":429,"props":565,"children":567},{"class":431,"line":566},16,[568],{"type":41,"tag":429,"props":569,"children":570},{},[571],{"type":47,"value":572},"elif response.status_code == 202:\n",{"type":41,"tag":429,"props":574,"children":576},{"class":431,"line":575},17,[577],{"type":41,"tag":429,"props":578,"children":579},{},[580],{"type":47,"value":581},"    print(\"Scores not yet calculated — try again later\")\n",{"type":41,"tag":324,"props":583,"children":585},{"id":584},"get-subuser-scores-single-date",[586],{"type":47,"value":587},"Get Subuser Scores (Single Date)",{"type":41,"tag":50,"props":589,"children":590},{},[591],{"type":41,"tag":122,"props":592,"children":594},{"className":593},[],[595],{"type":47,"value":596},"GET \u002Fv3\u002Fengagementquality\u002Fsubusers\u002Fscores",{"type":41,"tag":160,"props":598,"children":599},{},[600,618],{"type":41,"tag":164,"props":601,"children":602},{},[603],{"type":41,"tag":168,"props":604,"children":605},{},[606,610,614],{"type":41,"tag":172,"props":607,"children":608},{},[609],{"type":47,"value":352},{"type":41,"tag":172,"props":611,"children":612},{},[613],{"type":47,"value":357},{"type":41,"tag":172,"props":615,"children":616},{},[617],{"type":47,"value":362},{"type":41,"tag":188,"props":619,"children":620},{},[621,642,664],{"type":41,"tag":168,"props":622,"children":623},{},[624,633,637],{"type":41,"tag":195,"props":625,"children":626},{},[627],{"type":41,"tag":122,"props":628,"children":630},{"className":629},[],[631],{"type":47,"value":632},"date",{"type":41,"tag":195,"props":634,"children":635},{},[636],{"type":47,"value":382},{"type":41,"tag":195,"props":638,"children":639},{},[640],{"type":47,"value":641},"Date (YYYY-MM-DD, UTC)",{"type":41,"tag":168,"props":643,"children":644},{},[645,654,659],{"type":41,"tag":195,"props":646,"children":647},{},[648],{"type":41,"tag":122,"props":649,"children":651},{"className":650},[],[652],{"type":47,"value":653},"limit",{"type":41,"tag":195,"props":655,"children":656},{},[657],{"type":47,"value":658},"No",{"type":41,"tag":195,"props":660,"children":661},{},[662],{"type":47,"value":663},"Results per page (default 1000, max 1000)",{"type":41,"tag":168,"props":665,"children":666},{},[667,676,680],{"type":41,"tag":195,"props":668,"children":669},{},[670],{"type":41,"tag":122,"props":671,"children":673},{"className":672},[],[674],{"type":47,"value":675},"after_key",{"type":41,"tag":195,"props":677,"children":678},{},[679],{"type":47,"value":658},{"type":41,"tag":195,"props":681,"children":682},{},[683],{"type":47,"value":684},"Pagination cursor",{"type":41,"tag":50,"props":686,"children":687},{},[688,690,696],{"type":47,"value":689},"Returns paginated results with ",{"type":41,"tag":122,"props":691,"children":693},{"className":692},[],[694],{"type":47,"value":695},"_metadata.next_params.after_key",{"type":47,"value":697}," for pagination.",{"type":41,"tag":67,"props":699,"children":700},{},[],{"type":41,"tag":42,"props":702,"children":704},{"id":703},"response-patterns",[705],{"type":47,"value":706},"Response Patterns",{"type":41,"tag":50,"props":708,"children":709},{},[710,715],{"type":41,"tag":59,"props":711,"children":712},{},[713],{"type":47,"value":714},"200 OK",{"type":47,"value":716}," — Scores available:",{"type":41,"tag":418,"props":718,"children":722},{"className":719,"code":720,"language":721,"meta":423,"style":423},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n    \"result\": [{\n        \"user_id\": \"12345\",\n        \"username\": \"myaccount\",\n        \"date\": \"2026-04-22\",\n        \"score\": 4,\n        \"metrics\": {\n            \"engagement_recency\": 4,\n            \"open_rate\": 5,\n            \"bounce_classification\": 3,\n            \"bounce_rate\": 4,\n            \"spam_rate\": 5\n        }\n    }]\n}\n","json",[723],{"type":41,"tag":122,"props":724,"children":725},{"__ignoreMap":423},[726,735,764,806,843,879,908,932,960,988,1016,1043,1067,1075,1083],{"type":41,"tag":429,"props":727,"children":728},{"class":431,"line":432},[729],{"type":41,"tag":429,"props":730,"children":732},{"style":731},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[733],{"type":47,"value":734},"{\n",{"type":41,"tag":429,"props":736,"children":737},{"class":431,"line":441},[738,743,749,754,759],{"type":41,"tag":429,"props":739,"children":740},{"style":731},[741],{"type":47,"value":742},"    \"",{"type":41,"tag":429,"props":744,"children":746},{"style":745},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[747],{"type":47,"value":748},"result",{"type":41,"tag":429,"props":750,"children":751},{"style":731},[752],{"type":47,"value":753},"\"",{"type":41,"tag":429,"props":755,"children":756},{"style":731},[757],{"type":47,"value":758},":",{"type":41,"tag":429,"props":760,"children":761},{"style":731},[762],{"type":47,"value":763}," [{\n",{"type":41,"tag":429,"props":765,"children":766},{"class":431,"line":451},[767,772,778,782,786,791,797,801],{"type":41,"tag":429,"props":768,"children":769},{"style":731},[770],{"type":47,"value":771},"        \"",{"type":41,"tag":429,"props":773,"children":775},{"style":774},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[776],{"type":47,"value":777},"user_id",{"type":41,"tag":429,"props":779,"children":780},{"style":731},[781],{"type":47,"value":753},{"type":41,"tag":429,"props":783,"children":784},{"style":731},[785],{"type":47,"value":758},{"type":41,"tag":429,"props":787,"children":788},{"style":731},[789],{"type":47,"value":790}," \"",{"type":41,"tag":429,"props":792,"children":794},{"style":793},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[795],{"type":47,"value":796},"12345",{"type":41,"tag":429,"props":798,"children":799},{"style":731},[800],{"type":47,"value":753},{"type":41,"tag":429,"props":802,"children":803},{"style":731},[804],{"type":47,"value":805},",\n",{"type":41,"tag":429,"props":807,"children":808},{"class":431,"line":460},[809,813,818,822,826,830,835,839],{"type":41,"tag":429,"props":810,"children":811},{"style":731},[812],{"type":47,"value":771},{"type":41,"tag":429,"props":814,"children":815},{"style":774},[816],{"type":47,"value":817},"username",{"type":41,"tag":429,"props":819,"children":820},{"style":731},[821],{"type":47,"value":753},{"type":41,"tag":429,"props":823,"children":824},{"style":731},[825],{"type":47,"value":758},{"type":41,"tag":429,"props":827,"children":828},{"style":731},[829],{"type":47,"value":790},{"type":41,"tag":429,"props":831,"children":832},{"style":793},[833],{"type":47,"value":834},"myaccount",{"type":41,"tag":429,"props":836,"children":837},{"style":731},[838],{"type":47,"value":753},{"type":41,"tag":429,"props":840,"children":841},{"style":731},[842],{"type":47,"value":805},{"type":41,"tag":429,"props":844,"children":845},{"class":431,"line":469},[846,850,854,858,862,866,871,875],{"type":41,"tag":429,"props":847,"children":848},{"style":731},[849],{"type":47,"value":771},{"type":41,"tag":429,"props":851,"children":852},{"style":774},[853],{"type":47,"value":632},{"type":41,"tag":429,"props":855,"children":856},{"style":731},[857],{"type":47,"value":753},{"type":41,"tag":429,"props":859,"children":860},{"style":731},[861],{"type":47,"value":758},{"type":41,"tag":429,"props":863,"children":864},{"style":731},[865],{"type":47,"value":790},{"type":41,"tag":429,"props":867,"children":868},{"style":793},[869],{"type":47,"value":870},"2026-04-22",{"type":41,"tag":429,"props":872,"children":873},{"style":731},[874],{"type":47,"value":753},{"type":41,"tag":429,"props":876,"children":877},{"style":731},[878],{"type":47,"value":805},{"type":41,"tag":429,"props":880,"children":881},{"class":431,"line":478},[882,886,890,894,898,904],{"type":41,"tag":429,"props":883,"children":884},{"style":731},[885],{"type":47,"value":771},{"type":41,"tag":429,"props":887,"children":888},{"style":774},[889],{"type":47,"value":127},{"type":41,"tag":429,"props":891,"children":892},{"style":731},[893],{"type":47,"value":753},{"type":41,"tag":429,"props":895,"children":896},{"style":731},[897],{"type":47,"value":758},{"type":41,"tag":429,"props":899,"children":901},{"style":900},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[902],{"type":47,"value":903}," 4",{"type":41,"tag":429,"props":905,"children":906},{"style":731},[907],{"type":47,"value":805},{"type":41,"tag":429,"props":909,"children":910},{"class":431,"line":29},[911,915,919,923,927],{"type":41,"tag":429,"props":912,"children":913},{"style":731},[914],{"type":47,"value":771},{"type":41,"tag":429,"props":916,"children":917},{"style":774},[918],{"type":47,"value":135},{"type":41,"tag":429,"props":920,"children":921},{"style":731},[922],{"type":47,"value":753},{"type":41,"tag":429,"props":924,"children":925},{"style":731},[926],{"type":47,"value":758},{"type":41,"tag":429,"props":928,"children":929},{"style":731},[930],{"type":47,"value":931}," {\n",{"type":41,"tag":429,"props":933,"children":934},{"class":431,"line":495},[935,940,944,948,952,956],{"type":41,"tag":429,"props":936,"children":937},{"style":731},[938],{"type":47,"value":939},"            \"",{"type":41,"tag":429,"props":941,"children":942},{"style":900},[943],{"type":47,"value":202},{"type":41,"tag":429,"props":945,"children":946},{"style":731},[947],{"type":47,"value":753},{"type":41,"tag":429,"props":949,"children":950},{"style":731},[951],{"type":47,"value":758},{"type":41,"tag":429,"props":953,"children":954},{"style":900},[955],{"type":47,"value":903},{"type":41,"tag":429,"props":957,"children":958},{"style":731},[959],{"type":47,"value":805},{"type":41,"tag":429,"props":961,"children":962},{"class":431,"line":504},[963,967,971,975,979,984],{"type":41,"tag":429,"props":964,"children":965},{"style":731},[966],{"type":47,"value":939},{"type":41,"tag":429,"props":968,"children":969},{"style":900},[970],{"type":47,"value":223},{"type":41,"tag":429,"props":972,"children":973},{"style":731},[974],{"type":47,"value":753},{"type":41,"tag":429,"props":976,"children":977},{"style":731},[978],{"type":47,"value":758},{"type":41,"tag":429,"props":980,"children":981},{"style":900},[982],{"type":47,"value":983}," 5",{"type":41,"tag":429,"props":985,"children":986},{"style":731},[987],{"type":47,"value":805},{"type":41,"tag":429,"props":989,"children":990},{"class":431,"line":512},[991,995,999,1003,1007,1012],{"type":41,"tag":429,"props":992,"children":993},{"style":731},[994],{"type":47,"value":939},{"type":41,"tag":429,"props":996,"children":997},{"style":900},[998],{"type":47,"value":244},{"type":41,"tag":429,"props":1000,"children":1001},{"style":731},[1002],{"type":47,"value":753},{"type":41,"tag":429,"props":1004,"children":1005},{"style":731},[1006],{"type":47,"value":758},{"type":41,"tag":429,"props":1008,"children":1009},{"style":900},[1010],{"type":47,"value":1011}," 3",{"type":41,"tag":429,"props":1013,"children":1014},{"style":731},[1015],{"type":47,"value":805},{"type":41,"tag":429,"props":1017,"children":1018},{"class":431,"line":521},[1019,1023,1027,1031,1035,1039],{"type":41,"tag":429,"props":1020,"children":1021},{"style":731},[1022],{"type":47,"value":939},{"type":41,"tag":429,"props":1024,"children":1025},{"style":900},[1026],{"type":47,"value":265},{"type":41,"tag":429,"props":1028,"children":1029},{"style":731},[1030],{"type":47,"value":753},{"type":41,"tag":429,"props":1032,"children":1033},{"style":731},[1034],{"type":47,"value":758},{"type":41,"tag":429,"props":1036,"children":1037},{"style":900},[1038],{"type":47,"value":903},{"type":41,"tag":429,"props":1040,"children":1041},{"style":731},[1042],{"type":47,"value":805},{"type":41,"tag":429,"props":1044,"children":1045},{"class":431,"line":530},[1046,1050,1054,1058,1062],{"type":41,"tag":429,"props":1047,"children":1048},{"style":731},[1049],{"type":47,"value":939},{"type":41,"tag":429,"props":1051,"children":1052},{"style":900},[1053],{"type":47,"value":286},{"type":41,"tag":429,"props":1055,"children":1056},{"style":731},[1057],{"type":47,"value":753},{"type":41,"tag":429,"props":1059,"children":1060},{"style":731},[1061],{"type":47,"value":758},{"type":41,"tag":429,"props":1063,"children":1064},{"style":900},[1065],{"type":47,"value":1066}," 5\n",{"type":41,"tag":429,"props":1068,"children":1069},{"class":431,"line":539},[1070],{"type":41,"tag":429,"props":1071,"children":1072},{"style":731},[1073],{"type":47,"value":1074},"        }\n",{"type":41,"tag":429,"props":1076,"children":1077},{"class":431,"line":548},[1078],{"type":41,"tag":429,"props":1079,"children":1080},{"style":731},[1081],{"type":47,"value":1082},"    }]\n",{"type":41,"tag":429,"props":1084,"children":1085},{"class":431,"line":557},[1086],{"type":41,"tag":429,"props":1087,"children":1088},{"style":731},[1089],{"type":47,"value":1090},"}\n",{"type":41,"tag":50,"props":1092,"children":1093},{},[1094,1099],{"type":41,"tag":59,"props":1095,"children":1096},{},[1097],{"type":47,"value":1098},"202 Accepted",{"type":47,"value":1100}," — Scores are calculated asynchronously. Not yet available for the requested date. Retry later.",{"type":41,"tag":50,"props":1102,"children":1103},{},[1104,1109],{"type":41,"tag":59,"props":1105,"children":1106},{},[1107],{"type":47,"value":1108},"Score or metrics omitted",{"type":47,"value":1110}," — Account\u002Fsubuser is not eligible (open tracking off or \u003C1,000 sends in 30 days).",{"type":41,"tag":67,"props":1112,"children":1113},{},[],{"type":41,"tag":42,"props":1115,"children":1117},{"id":1116},"cannot",[1118],{"type":47,"value":1119},"CANNOT",{"type":41,"tag":1121,"props":1122,"children":1123},"ul",{},[1124,1134,1144,1154,1172,1182,1192],{"type":41,"tag":86,"props":1125,"children":1126},{},[1127,1132],{"type":41,"tag":59,"props":1128,"children":1129},{},[1130],{"type":47,"value":1131},"Cannot get scores without open tracking enabled",{"type":47,"value":1133}," — This is a hard prerequisite. No tracking = no score.",{"type":41,"tag":86,"props":1135,"children":1136},{},[1137,1142],{"type":41,"tag":59,"props":1138,"children":1139},{},[1140],{"type":47,"value":1141},"Cannot get scores with fewer than 1,000 messages in 30 days",{"type":47,"value":1143}," — Low-volume senders are ineligible.",{"type":41,"tag":86,"props":1145,"children":1146},{},[1147,1152],{"type":41,"tag":59,"props":1148,"children":1149},{},[1150],{"type":47,"value":1151},"Cannot query more than 90 days in the past",{"type":47,"value":1153}," — Date range is limited to the last 90 days.",{"type":41,"tag":86,"props":1155,"children":1156},{},[1157,1162,1164,1170],{"type":41,"tag":59,"props":1158,"children":1159},{},[1160],{"type":47,"value":1161},"Cannot get real-time scores",{"type":47,"value":1163}," — Scores are calculated asynchronously (daily). A ",{"type":41,"tag":122,"props":1165,"children":1167},{"className":1166},[],[1168],{"type":47,"value":1169},"202",{"type":47,"value":1171}," response means \"not ready yet.\"",{"type":41,"tag":86,"props":1173,"children":1174},{},[1175,1180],{"type":41,"tag":59,"props":1176,"children":1177},{},[1178],{"type":47,"value":1179},"Cannot determine the exact weighting formula",{"type":47,"value":1181}," — The overall score is not a simple average. Individual metric weights are not published.",{"type":41,"tag":86,"props":1183,"children":1184},{},[1185,1190],{"type":41,"tag":59,"props":1186,"children":1187},{},[1188],{"type":47,"value":1189},"Email Validation API is a separate paid feature",{"type":47,"value":1191}," — Referenced in bounce_rate improvement guidance, but requires Pro or Premier plan. Not included in base plan.",{"type":41,"tag":86,"props":1193,"children":1194},{},[1195,1200],{"type":41,"tag":59,"props":1196,"children":1197},{},[1198],{"type":47,"value":1199},"Subuser endpoint accepts only a single date",{"type":47,"value":1201}," — Not a date range. Query one day at a time.",{"type":41,"tag":67,"props":1203,"children":1204},{},[],{"type":41,"tag":42,"props":1206,"children":1208},{"id":1207},"next-steps",[1209],{"type":47,"value":1210},"Next Steps",{"type":41,"tag":1121,"props":1212,"children":1213},{},[1214,1230,1245],{"type":41,"tag":86,"props":1215,"children":1216},{},[1217,1222,1224],{"type":41,"tag":59,"props":1218,"children":1219},{},[1220],{"type":47,"value":1221},"Improve bounce rate:",{"type":47,"value":1223}," ",{"type":41,"tag":122,"props":1225,"children":1227},{"className":1226},[],[1228],{"type":47,"value":1229},"twilio-sendgrid-suppressions",{"type":41,"tag":86,"props":1231,"children":1232},{},[1233,1238,1239],{"type":41,"tag":59,"props":1234,"children":1235},{},[1236],{"type":47,"value":1237},"Track delivery events:",{"type":47,"value":1223},{"type":41,"tag":122,"props":1240,"children":1242},{"className":1241},[],[1243],{"type":47,"value":1244},"twilio-sendgrid-webhooks",{"type":41,"tag":86,"props":1246,"children":1247},{},[1248,1253,1254],{"type":41,"tag":59,"props":1249,"children":1250},{},[1251],{"type":47,"value":1252},"Account setup:",{"type":47,"value":1223},{"type":41,"tag":122,"props":1255,"children":1257},{"className":1256},[],[1258],{"type":47,"value":1259},"twilio-sendgrid-account-setup",{"type":41,"tag":1261,"props":1262,"children":1263},"style",{},[1264],{"type":47,"value":1265},"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":1267,"total":1375},[1268,1284,1304,1315,1327,1342,1359],{"slug":1269,"name":1269,"fn":1270,"description":1271,"org":1272,"tags":1273,"stars":25,"repoUrl":26,"updatedAt":1283},"twilio-account-setup","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},[1274,1277,1280],{"name":1275,"slug":1276,"type":15},"API Development","api-development",{"name":1278,"slug":1279,"type":15},"Communications","communications",{"name":1281,"slug":1282,"type":15},"SMS","sms","2026-08-01T05:43:28.968968",{"slug":1285,"name":1285,"fn":1286,"description":1287,"org":1288,"tags":1289,"stars":25,"repoUrl":26,"updatedAt":1303},"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},[1290,1293,1296,1299,1302],{"name":1291,"slug":1292,"type":15},"Agents","agents",{"name":1294,"slug":1295,"type":15},"AI","ai",{"name":1297,"slug":1298,"type":15},"Coaching","coaching",{"name":1300,"slug":1301,"type":15},"QA","qa",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:58.250609",{"slug":1305,"name":1305,"fn":1306,"description":1307,"org":1308,"tags":1309,"stars":25,"repoUrl":26,"updatedAt":1314},"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},[1310,1311,1312,1313],{"name":1291,"slug":1292,"type":15},{"name":1275,"slug":1276,"type":15},{"name":1278,"slug":1279,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:06:05.217098",{"slug":1316,"name":1316,"fn":1317,"description":1318,"org":1319,"tags":1320,"stars":25,"repoUrl":26,"updatedAt":1326},"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},[1321,1322,1325],{"name":1291,"slug":1292,"type":15},{"name":1323,"slug":1324,"type":15},"Architecture","architecture",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:48.883723",{"slug":1328,"name":1328,"fn":1329,"description":1330,"org":1331,"tags":1332,"stars":25,"repoUrl":26,"updatedAt":1341},"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},[1333,1336,1339,1340],{"name":1334,"slug":1335,"type":15},"Audio","audio",{"name":1337,"slug":1338,"type":15},"Compliance","compliance",{"name":1300,"slug":1301,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.268412",{"slug":1343,"name":1343,"fn":1344,"description":1345,"org":1346,"tags":1347,"stars":25,"repoUrl":26,"updatedAt":1358},"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},[1348,1351,1354,1357],{"name":1349,"slug":1350,"type":15},"CLI","cli",{"name":1352,"slug":1353,"type":15},"Local Development","local-development",{"name":1355,"slug":1356,"type":15},"Operations","operations",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:54.925664",{"slug":1360,"name":1360,"fn":1361,"description":1362,"org":1363,"tags":1364,"stars":25,"repoUrl":26,"updatedAt":1374},"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},[1365,1366,1369,1370,1371],{"name":1337,"slug":1338,"type":15},{"name":1367,"slug":1368,"type":15},"Messaging","messaging",{"name":1281,"slug":1282,"type":15},{"name":9,"slug":8,"type":15},{"name":1372,"slug":1373,"type":15},"WhatsApp","whatsapp","2026-07-17T06:05:47.897229",57,{"items":1377,"total":1375},[1378,1384,1392,1399,1405,1412,1419,1427,1443,1456,1470,1484],{"slug":1269,"name":1269,"fn":1270,"description":1271,"org":1379,"tags":1380,"stars":25,"repoUrl":26,"updatedAt":1283},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1381,1382,1383],{"name":1275,"slug":1276,"type":15},{"name":1278,"slug":1279,"type":15},{"name":1281,"slug":1282,"type":15},{"slug":1285,"name":1285,"fn":1286,"description":1287,"org":1385,"tags":1386,"stars":25,"repoUrl":26,"updatedAt":1303},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1387,1388,1389,1390,1391],{"name":1291,"slug":1292,"type":15},{"name":1294,"slug":1295,"type":15},{"name":1297,"slug":1298,"type":15},{"name":1300,"slug":1301,"type":15},{"name":9,"slug":8,"type":15},{"slug":1305,"name":1305,"fn":1306,"description":1307,"org":1393,"tags":1394,"stars":25,"repoUrl":26,"updatedAt":1314},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1395,1396,1397,1398],{"name":1291,"slug":1292,"type":15},{"name":1275,"slug":1276,"type":15},{"name":1278,"slug":1279,"type":15},{"name":9,"slug":8,"type":15},{"slug":1316,"name":1316,"fn":1317,"description":1318,"org":1400,"tags":1401,"stars":25,"repoUrl":26,"updatedAt":1326},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1402,1403,1404],{"name":1291,"slug":1292,"type":15},{"name":1323,"slug":1324,"type":15},{"name":9,"slug":8,"type":15},{"slug":1328,"name":1328,"fn":1329,"description":1330,"org":1406,"tags":1407,"stars":25,"repoUrl":26,"updatedAt":1341},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1408,1409,1410,1411],{"name":1334,"slug":1335,"type":15},{"name":1337,"slug":1338,"type":15},{"name":1300,"slug":1301,"type":15},{"name":9,"slug":8,"type":15},{"slug":1343,"name":1343,"fn":1344,"description":1345,"org":1413,"tags":1414,"stars":25,"repoUrl":26,"updatedAt":1358},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1415,1416,1417,1418],{"name":1349,"slug":1350,"type":15},{"name":1352,"slug":1353,"type":15},{"name":1355,"slug":1356,"type":15},{"name":9,"slug":8,"type":15},{"slug":1360,"name":1360,"fn":1361,"description":1362,"org":1420,"tags":1421,"stars":25,"repoUrl":26,"updatedAt":1374},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1422,1423,1424,1425,1426],{"name":1337,"slug":1338,"type":15},{"name":1367,"slug":1368,"type":15},{"name":1281,"slug":1282,"type":15},{"name":9,"slug":8,"type":15},{"name":1372,"slug":1373,"type":15},{"slug":1428,"name":1428,"fn":1429,"description":1430,"org":1431,"tags":1432,"stars":25,"repoUrl":26,"updatedAt":1442},"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},[1433,1434,1435,1438,1441],{"name":1337,"slug":1338,"type":15},{"name":1367,"slug":1368,"type":15},{"name":1436,"slug":1437,"type":15},"Regulatory Compliance","regulatory-compliance",{"name":1439,"slug":1440,"type":15},"Security","security",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.952779",{"slug":1444,"name":1444,"fn":1445,"description":1446,"org":1447,"tags":1448,"stars":25,"repoUrl":26,"updatedAt":1455},"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},[1449,1450,1451,1454],{"name":1334,"slug":1335,"type":15},{"name":1278,"slug":1279,"type":15},{"name":1452,"slug":1453,"type":15},"Meetings","meetings",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.603708",{"slug":1457,"name":1457,"fn":1458,"description":1459,"org":1460,"tags":1461,"stars":25,"repoUrl":26,"updatedAt":1469},"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},[1462,1463,1464,1465,1468],{"name":23,"slug":24,"type":15},{"name":1367,"slug":1368,"type":15},{"name":1281,"slug":1282,"type":15},{"name":1466,"slug":1467,"type":15},"Templates","templates",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:26.637309",{"slug":1471,"name":1471,"fn":1472,"description":1473,"org":1474,"tags":1475,"stars":25,"repoUrl":26,"updatedAt":1483},"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},[1476,1477,1478,1479,1482],{"name":1291,"slug":1292,"type":15},{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":1480,"slug":1481,"type":15},"NLP","nlp",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:52.545387",{"slug":1485,"name":1485,"fn":1486,"description":1487,"org":1488,"tags":1489,"stars":25,"repoUrl":26,"updatedAt":1495},"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},[1490,1491,1494],{"name":1291,"slug":1292,"type":15},{"name":1492,"slug":1493,"type":15},"Memory","memory",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:19.526724"]