{"id":"e7372941-f277-4ad9-910c-43ca3d816e08","shortId":"BrRECK","kind":"skill","title":"telnyx-verify-curl","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Verify - curl\n\n## Installation\n\n```text\n# curl is pre-installed on macOS, Linux, and Windows 10+\n```\n\n## Setup\n\n```bash\nexport TELNYX_API_KEY=\"YOUR_API_KEY_HERE\"\n```\n\nAll examples below use `$TELNYX_API_KEY` for authentication.\n\n## Error Handling\n\nAll API calls can fail with network errors, rate limits (429), validation errors (422),\nor authentication errors (401). Always handle errors in production code:\n\n```bash\n# Check HTTP status code in response\nresponse=$(curl -s -w \"\\n%{http_code}\" \\\n  -X POST \"https://api.telnyx.com/v2/messages\" \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"to\": \"+13125550001\", \"from\": \"+13125550002\", \"text\": \"Hello\"}')\n\nhttp_code=$(echo \"$response\" | tail -1)\nbody=$(echo \"$response\" | sed '$d')\n\ncase $http_code in\n  2*) echo \"Success: $body\" ;;\n  422) echo \"Validation error — check required fields and formats\" ;;\n  429) echo \"Rate limited — retry after delay\"; sleep 1 ;;\n  401) echo \"Authentication failed — check TELNYX_API_KEY\" ;;\n  *)   echo \"Error $http_code: $body\" ;;\nesac\n```\n\nCommon error codes: `401` invalid API key, `403` insufficient permissions,\n`404` resource not found, `422` validation error (check field formats),\n`429` rate limited (retry with exponential backoff).\n\n## Important Notes\n\n- **Phone numbers** must be in E.164 format (e.g., `+13125550001`). Include the `+` prefix and country code. No spaces, dashes, or parentheses.\n- **Pagination:** List endpoints return paginated results. Use `page[number]` and `page[size]` query parameters to navigate pages. Check `meta.total_pages` in the response.\n\n## Lookup phone number data\n\nReturns information about the provided phone number.\n\n`GET /number_lookup/{phone_number}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/number_lookup/+18665552368\"\n```\n\nReturns: `caller_name` (object), `carrier` (object), `country_code` (string), `fraud` (string | null), `national_format` (string), `phone_number` (string), `portability` (object), `record_type` (string)\n\n## List verifications by phone number\n\n`GET /verifications/by_phone_number/{phone_number}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/verifications/by_phone_number/+13035551234\"\n```\n\nReturns: `created_at` (string), `custom_code` (string | null), `id` (uuid), `phone_number` (string), `record_type` (enum: verification), `status` (enum: pending, accepted, invalid, expired, error), `timeout_secs` (integer), `type` (enum: sms, call, flashcall), `updated_at` (string), `verify_profile_id` (uuid)\n\n## Verify verification code by phone number\n\n`POST /verifications/by_phone_number/{phone_number}/actions/verify` — Required: `code`, `verify_profile_id`\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"code\": \"17686\",\n  \"verify_profile_id\": \"12ade33a-21c0-473b-b055-b3c836e1c292\"\n}' \\\n  \"https://api.telnyx.com/v2/verifications/by_phone_number/+13035551234/actions/verify\"\n```\n\nReturns: `phone_number` (string), `response_code` (enum: accepted, rejected)\n\n## Trigger Call verification\n\n`POST /verifications/call` — Required: `phone_number`, `verify_profile_id`\n\nOptional: `custom_code` (string | null), `extension` (string | null), `timeout_secs` (integer)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"phone_number\": \"+13035551234\",\n  \"verify_profile_id\": \"12ade33a-21c0-473b-b055-b3c836e1c292\"\n}' \\\n  \"https://api.telnyx.com/v2/verifications/call\"\n```\n\nReturns: `created_at` (string), `custom_code` (string | null), `id` (uuid), `phone_number` (string), `record_type` (enum: verification), `status` (enum: pending, accepted, invalid, expired, error), `timeout_secs` (integer), `type` (enum: sms, call, flashcall), `updated_at` (string), `verify_profile_id` (uuid)\n\n## Trigger Flash call verification\n\n`POST /verifications/flashcall` — Required: `phone_number`, `verify_profile_id`\n\nOptional: `timeout_secs` (integer)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"phone_number\": \"+13035551234\",\n  \"verify_profile_id\": \"12ade33a-21c0-473b-b055-b3c836e1c292\"\n}' \\\n  \"https://api.telnyx.com/v2/verifications/flashcall\"\n```\n\nReturns: `created_at` (string), `custom_code` (string | null), `id` (uuid), `phone_number` (string), `record_type` (enum: verification), `status` (enum: pending, accepted, invalid, expired, error), `timeout_secs` (integer), `type` (enum: sms, call, flashcall), `updated_at` (string), `verify_profile_id` (uuid)\n\n## Trigger SMS verification\n\n`POST /verifications/sms` — Required: `phone_number`, `verify_profile_id`\n\nOptional: `custom_code` (string | null), `timeout_secs` (integer)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"phone_number\": \"+13035551234\",\n  \"verify_profile_id\": \"12ade33a-21c0-473b-b055-b3c836e1c292\"\n}' \\\n  \"https://api.telnyx.com/v2/verifications/sms\"\n```\n\nReturns: `created_at` (string), `custom_code` (string | null), `id` (uuid), `phone_number` (string), `record_type` (enum: verification), `status` (enum: pending, accepted, invalid, expired, error), `timeout_secs` (integer), `type` (enum: sms, call, flashcall), `updated_at` (string), `verify_profile_id` (uuid)\n\n## Retrieve verification\n\n`GET /verifications/{verification_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/verifications/12ade33a-21c0-473b-b055-b3c836e1c292\"\n```\n\nReturns: `created_at` (string), `custom_code` (string | null), `id` (uuid), `phone_number` (string), `record_type` (enum: verification), `status` (enum: pending, accepted, invalid, expired, error), `timeout_secs` (integer), `type` (enum: sms, call, flashcall), `updated_at` (string), `verify_profile_id` (uuid)\n\n## Verify verification code by ID\n\n`POST /verifications/{verification_id}/actions/verify`\n\nOptional: `code` (string), `status` (enum: accepted, rejected)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n      \"code\": \"12345\"\n  }' \\\n  \"https://api.telnyx.com/v2/verifications/12ade33a-21c0-473b-b055-b3c836e1c292/actions/verify\"\n```\n\nReturns: `phone_number` (string), `response_code` (enum: accepted, rejected)\n\n## List all Verify profiles\n\nGets a paginated list of Verify profiles.\n\n`GET /verify_profiles`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/verify_profiles\"\n```\n\nReturns: `call` (object), `created_at` (string), `flashcall` (object), `id` (uuid), `language` (string), `name` (string), `rcs` (object), `record_type` (enum: verification_profile), `sms` (object), `updated_at` (string), `webhook_failover_url` (string), `webhook_url` (string)\n\n## Create a Verify profile\n\nCreates a new Verify profile to associate verifications with.\n\n`POST /verify_profiles` — Required: `name`\n\nOptional: `call` (object), `flashcall` (object), `language` (string), `rcs` (object), `sms` (object), `webhook_failover_url` (string), `webhook_url` (string)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"name\": \"Test Profile\"\n}' \\\n  \"https://api.telnyx.com/v2/verify_profiles\"\n```\n\nReturns: `call` (object), `created_at` (string), `flashcall` (object), `id` (uuid), `language` (string), `name` (string), `rcs` (object), `record_type` (enum: verification_profile), `sms` (object), `updated_at` (string), `webhook_failover_url` (string), `webhook_url` (string)\n\n## Retrieve Verify profile message templates\n\nList all Verify profile message templates.\n\n`GET /verify_profiles/templates`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/verify_profiles/templates\"\n```\n\nReturns: `id` (uuid), `text` (string)\n\n## Create message template\n\nCreate a new Verify profile message template.\n\n`POST /verify_profiles/templates` — Required: `text`\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"text\": \"Your {{app_name}} verification code is: {{code}}.\"\n}' \\\n  \"https://api.telnyx.com/v2/verify_profiles/templates\"\n```\n\nReturns: `id` (uuid), `text` (string)\n\n## Update message template\n\nUpdate an existing Verify profile message template.\n\n`PATCH /verify_profiles/templates/{template_id}` — Required: `text`\n\n```bash\ncurl \\\n  -X PATCH \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"text\": \"Your {{app_name}} verification code is: {{code}}.\"\n}' \\\n  \"https://api.telnyx.com/v2/verify_profiles/templates/12ade33a-21c0-473b-b055-b3c836e1c292\"\n```\n\nReturns: `id` (uuid), `text` (string)\n\n## Retrieve Verify profile\n\nGets a single Verify profile.\n\n`GET /verify_profiles/{verify_profile_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/verify_profiles/12ade33a-21c0-473b-b055-b3c836e1c292\"\n```\n\nReturns: `call` (object), `created_at` (string), `flashcall` (object), `id` (uuid), `language` (string), `name` (string), `rcs` (object), `record_type` (enum: verification_profile), `sms` (object), `updated_at` (string), `webhook_failover_url` (string), `webhook_url` (string)\n\n## Update Verify profile\n\n`PATCH /verify_profiles/{verify_profile_id}`\n\nOptional: `call` (object), `flashcall` (object), `language` (string), `name` (string), `rcs` (object), `sms` (object), `webhook_failover_url` (string), `webhook_url` (string)\n\n```bash\ncurl \\\n  -X PATCH \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  \"https://api.telnyx.com/v2/verify_profiles/12ade33a-21c0-473b-b055-b3c836e1c292\"\n```\n\nReturns: `call` (object), `created_at` (string), `flashcall` (object), `id` (uuid), `language` (string), `name` (string), `rcs` (object), `record_type` (enum: verification_profile), `sms` (object), `updated_at` (string), `webhook_failover_url` (string), `webhook_url` (string)\n\n## Delete Verify profile\n\n`DELETE /verify_profiles/{verify_profile_id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/verify_profiles/12ade33a-21c0-473b-b055-b3c836e1c292\"\n```\n\nReturns: `call` (object), `created_at` (string), `flashcall` (object), `id` (uuid), `language` (string), `name` (string), `rcs` (object), `record_type` (enum: verification_profile), `sms` (object), `updated_at` (string), `webhook_failover_url` (string), `webhook_url` (string)","tags":["telnyx","verify","curl","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk"],"capabilities":["skill","source-team-telnyx","skill-telnyx-verify-curl","topic-agent-skills","topic-ai-coding-agent","topic-claude-code","topic-cpaas","topic-cursor","topic-iot","topic-llm","topic-sdk","topic-sip","topic-sms","topic-speech-to-text","topic-telephony"],"categories":["ai"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/team-telnyx/ai/telnyx-verify-curl","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add team-telnyx/ai","source_repo":"https://github.com/team-telnyx/ai","install_from":"skills.sh"}},"qualityScore":"0.533","qualityRationale":"deterministic score 0.53 from registry signals: · indexed on github topic:agent-skills · 167 github stars · SKILL.md body (10,688 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T00:54:49.499Z","embedding":null,"createdAt":"2026-04-18T22:08:03.121Z","updatedAt":"2026-04-22T00:54:49.499Z","lastSeenAt":"2026-04-22T00:54:49.499Z","tsv":"'+13035551234':429,515,604 '+13125550001':98,191 '+13125550002':100 '-1':108 '/actions/verify':344,721 '/number_lookup':238 '/v2/messages':84 '/v2/number_lookup/+18665552368':251 '/v2/verifications/12ade33a-21c0-473b-b055-b3c836e1c292':672 '/v2/verifications/12ade33a-21c0-473b-b055-b3c836e1c292/actions/verify':749 '/v2/verifications/by_phone_number/+13035551234':294 '/v2/verifications/by_phone_number/+13035551234/actions/verify':379 '/v2/verifications/call':441 '/v2/verifications/flashcall':527 '/v2/verifications/sms':616 '/v2/verify_profiles':782,872 '/v2/verify_profiles/12ade33a-21c0-473b-b055-b3c836e1c292':1052,1131,1185 '/v2/verify_profiles/templates':929,975 '/v2/verify_profiles/templates/12ade33a-21c0-473b-b055-b3c836e1c292':1023 '/verifications':659,718 '/verifications/by_phone_number':281,341 '/verifications/call':393 '/verifications/flashcall':486 '/verifications/sms':571 '/verify_profiles':771,830,1038,1090,1169 '/verify_profiles/templates':918,946,992 '1':139 '10':20 '12345':746 '12ade33a':372,434,520,609 '12ade33a-21c0-473b-b055-b3c836e1c292':371,433,519,608 '17686':367 '2':118 '21c0':373,435,521,610 '401':59,140,157 '403':161 '404':164 '422':55,122,168 '429':52,131,174 '473b':374,436,522,611 'accept':315,387,462,548,637,693,727,757 'alway':60 'api':25,28,36,43,89,146,159,247,290,358,419,505,594,668,737,778,859,925,957,1005,1048,1122,1181 'api.telnyx.com':83,250,293,378,440,526,615,671,748,781,871,928,974,1022,1051,1130,1184 'api.telnyx.com/v2/messages':82 'api.telnyx.com/v2/number_lookup/+18665552368':249 'api.telnyx.com/v2/verifications/12ade33a-21c0-473b-b055-b3c836e1c292':670 'api.telnyx.com/v2/verifications/12ade33a-21c0-473b-b055-b3c836e1c292/actions/verify':747 'api.telnyx.com/v2/verifications/by_phone_number/+13035551234':292 'api.telnyx.com/v2/verifications/by_phone_number/+13035551234/actions/verify':377 'api.telnyx.com/v2/verifications/call':439 'api.telnyx.com/v2/verifications/flashcall':525 'api.telnyx.com/v2/verifications/sms':614 'api.telnyx.com/v2/verify_profiles':780,870 'api.telnyx.com/v2/verify_profiles/12ade33a-21c0-473b-b055-b3c836e1c292':1050,1129,1183 'api.telnyx.com/v2/verify_profiles/templates':927,973 'api.telnyx.com/v2/verify_profiles/templates/12ade33a-21c0-473b-b055-b3c836e1c292':1021 'app':967,1015 'application/json':95,364,425,511,600,743,865,963,1011,1128 'associ':826 'authent':39,57,142 'author':86,244,287,355,416,502,591,665,734,775,856,922,954,1002,1045,1119,1178 'b055':375,437,523,612 'b3c836e1c292':376,438,524,613 'backoff':180 'bash':22,66,241,284,350,411,497,586,662,729,772,851,919,949,997,1042,1114,1173 'bearer':87,245,288,356,417,503,592,666,735,776,857,923,955,1003,1046,1120,1179 'bodi':109,121,152 'call':44,325,390,472,483,558,647,703,784,834,874,1054,1095,1133,1187 'caller':253 'carrier':256 'case':114 'check':67,126,144,171,220 'code':65,70,79,104,116,151,156,197,259,300,336,346,366,385,402,447,533,580,622,678,714,723,745,755,970,972,1018,1020 'common':154 'content':93,362,423,509,598,741,863,961,1009,1126 'content-typ':92,361,422,508,597,740,862,960,1008,1125 'countri':196,258 'creat':296,443,529,618,674,786,816,820,876,935,938,1056,1135,1189 'curl':4,7,10,74,242,285,351,412,498,587,663,730,773,852,920,950,998,1043,1115,1174 'custom':299,401,446,532,579,621,677 'd':96,113,365,426,512,601,744,866,964,1012 'dash':200 'data':229 'delay':137 'delet':1165,1168,1176 'e.164':188 'e.g':190 'echo':105,110,119,123,132,141,148 'endpoint':205 'enum':310,313,323,386,457,460,470,543,546,556,632,635,645,688,691,701,726,756,801,891,1071,1150,1204 'error':40,49,54,58,62,125,149,155,170,318,465,551,640,696 'esac':153 'exampl':32 'exist':986 'expir':317,464,550,639,695 'exponenti':179 'export':23 'extens':405 'fail':46,143 'failov':810,845,900,1080,1108,1159,1213 'field':128,172 'flash':482 'flashcal':326,473,559,648,704,789,836,879,1059,1097,1138,1192 'format':130,173,189,265 'found':167 'fraud':261 'get':237,280,658,763,770,917,1032,1037 'h':85,91,243,286,354,360,415,421,501,507,590,596,664,733,739,774,855,861,921,953,959,1001,1007,1044,1118,1124,1177 'handl':41,61 'hello':102 'http':68,78,103,115,150 'id':303,332,349,370,399,432,450,479,492,518,536,565,577,607,625,654,661,681,710,716,720,791,881,931,977,994,1025,1041,1061,1093,1140,1172,1194 'import':181 'includ':192 'inform':231 'instal':8,14 'insuffici':162 'integ':321,410,468,496,554,585,643,699 'invalid':158,316,463,549,638,694 'key':26,29,37,90,147,160,248,291,359,420,506,595,669,738,779,860,926,958,1006,1049,1123,1182 'languag':793,838,883,1063,1099,1142,1196 'limit':51,134,176 'linux':17 'list':204,275,759,766,911 'lookup':226 'maco':16 'messag':909,915,936,943,982,989 'meta.total':221 'must':185 'n':77 'name':254,795,832,867,885,968,1016,1065,1101,1144,1198 'nation':264 'navig':218 'network':48 'new':822,940 'note':182 'null':263,302,404,407,449,535,582,624,680 'number':184,211,228,236,240,268,279,283,306,339,343,382,396,428,453,489,514,539,574,603,628,684,752 'object':255,257,271,785,790,798,805,835,837,841,843,875,880,888,895,1055,1060,1068,1075,1096,1098,1104,1106,1134,1139,1147,1154,1188,1193,1201,1208 'option':400,493,578,722,833,1094 'page':210,213,219,222 'pagin':203,207,765 'paramet':216 'parenthes':202 'patch':991,1000,1089,1117 'pend':314,461,547,636,692 'permiss':163 'phone':183,227,235,239,267,278,282,305,338,342,381,395,427,452,488,513,538,573,602,627,683,751 'portabl':270 'post':81,340,353,392,414,485,500,570,589,717,732,829,854,945,952 'pre':13 'pre-instal':12 'prefix':194 'product':64 'profil':331,348,369,398,431,478,491,517,564,576,606,653,709,762,769,803,819,824,869,893,908,914,942,988,1031,1036,1040,1073,1088,1092,1152,1167,1171,1206 'provid':234 'queri':215 'rate':50,133,175 'rcs':797,840,887,1067,1103,1146,1200 'record':272,308,455,541,630,686,799,889,1069,1148,1202 'reject':388,728,758 'requir':127,345,394,487,572,831,947,995 'resourc':165 'respons':72,73,106,111,225,384,754 'result':208 'retri':135,177 'retriev':656,906,1029 'return':206,230,252,295,380,442,528,617,673,750,783,873,930,976,1024,1053,1132,1186 'sec':320,409,467,495,553,584,642,698 'sed':112 'setup':21 'singl':1034 'size':214 'skill' 'skill-telnyx-verify-curl' 'sleep':138 'sms':324,471,557,568,646,702,804,842,894,1074,1105,1153,1207 'source-team-telnyx' 'space':199 'status':69,312,459,545,634,690,725 'string':260,262,266,269,274,298,301,307,329,383,403,406,445,448,454,476,531,534,540,562,581,620,623,629,651,676,679,685,707,724,753,788,794,796,808,812,815,839,847,850,878,884,886,898,902,905,934,980,1028,1058,1064,1066,1078,1082,1085,1100,1102,1110,1113,1137,1143,1145,1157,1161,1164,1191,1197,1199,1211,1215,1218 'success':120 'tail':107 'telnyx':2,5,24,35,88,145,246,289,357,418,504,593,667,736,777,858,924,956,1004,1047,1121,1180 'telnyx-verify-curl':1 'templat':910,916,937,944,983,990,993 'test':868 'text':9,101,933,948,965,979,996,1013,1027 'timeout':319,408,466,494,552,583,641,697 'topic-agent-skills' 'topic-ai-coding-agent' 'topic-claude-code' 'topic-cpaas' 'topic-cursor' 'topic-iot' 'topic-llm' 'topic-sdk' 'topic-sip' 'topic-sms' 'topic-speech-to-text' 'topic-telephony' 'trigger':389,481,567 'type':94,273,309,322,363,424,456,469,510,542,555,599,631,644,687,700,742,800,864,890,962,1010,1070,1127,1149,1203 'updat':327,474,560,649,705,806,896,981,984,1076,1086,1155,1209 'url':811,814,846,849,901,904,1081,1084,1109,1112,1160,1163,1214,1217 'use':34,209 'uuid':304,333,451,480,537,566,626,655,682,711,792,882,932,978,1026,1062,1141,1195 'valid':53,124,169 'verif':276,311,335,391,458,484,544,569,633,657,660,689,713,719,802,827,892,969,1017,1072,1151,1205 'verifi':3,6,330,334,347,368,397,430,477,490,516,563,575,605,652,708,712,761,768,818,823,907,913,941,987,1030,1035,1039,1087,1091,1166,1170 'w':76 'webhook':809,813,844,848,899,903,1079,1083,1107,1111,1158,1162,1212,1216 'window':19 'x':80,352,413,499,588,731,853,951,999,1116,1175","prices":[{"id":"58baa916-8c4c-4cf5-a6b4-1147f5ad89e3","listingId":"e7372941-f277-4ad9-910c-43ca3d816e08","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"team-telnyx","category":"ai","install_from":"skills.sh"},"createdAt":"2026-04-18T22:08:03.121Z"}],"sources":[{"listingId":"e7372941-f277-4ad9-910c-43ca3d816e08","source":"github","sourceId":"team-telnyx/ai/telnyx-verify-curl","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-verify-curl","isPrimary":false,"firstSeenAt":"2026-04-18T22:08:03.121Z","lastSeenAt":"2026-04-22T00:54:49.499Z"}],"details":{"listingId":"e7372941-f277-4ad9-910c-43ca3d816e08","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-verify-curl","github":{"repo":"team-telnyx/ai","stars":167,"topics":["agent-skills","ai","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk","sip","sms","speech-to-text","telephony","telnyx","tts","twilio-migration","voice-agents","voice-ai","webrtc","windsurf"],"license":"mit","html_url":"https://github.com/team-telnyx/ai","pushed_at":"2026-04-21T22:09:49Z","description":"Official one-stop shop for AI Agents and developers building with Telnyx.","skill_md_sha":"46409a1ab3ae935884e6472d29361744d16e3ad4","skill_md_path":"skills/telnyx-verify-curl/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-verify-curl"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-verify-curl","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-verify-curl"},"updatedAt":"2026-04-22T00:54:49.499Z"}}