{"id":"15423c25-d1dd-435d-be8d-70413e3023cb","shortId":"AyBL8B","kind":"skill","title":"telnyx-numbers-curl","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Numbers - 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\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/available_phone_numbers\"\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## Reference Use Rules\n\nDo not invent Telnyx parameters, enums, response fields, or webhook fields.\n\n- If the parameter, enum, or response field you need is not shown inline in this skill, read [references/api-details.md](references/api-details.md) before writing code.\n- Before using any operation in `## Additional Operations`, read [the optional-parameters section](references/api-details.md#optional-parameters) and [the response-schemas section](references/api-details.md#response-schemas).\n\n## Core Tasks\n\n### Search available phone numbers\n\nNumber search is the entrypoint for provisioning. Agents need the search method, key query filters, and the fields returned for candidate numbers.\n\n`GET /available_phone_numbers`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `filter` | object | No | Consolidated filter parameter (deepObject style). |\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/available_phone_numbers\"\n```\n\nResponse wrapper:\n- items: `.data`\n- pagination: `.meta`\n\nPrimary item fields:\n- `phone_number`\n- `record_type`\n- `quickship`\n- `reservable`\n- `best_effort`\n- `cost_information`\n\n### Create a number order\n\nNumber ordering is the production provisioning step after number selection.\n\n`POST /number_orders`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `phone_numbers` | array[object] | Yes |  |\n| `connection_id` | string (UUID) | No | Identifies the connection associated with this phone number. |\n| `messaging_profile_id` | string (UUID) | No | Identifies the messaging profile associated with the phone n... |\n| `billing_group_id` | string (UUID) | No | Identifies the billing group associated with the phone numbe... |\n| ... | | | +1 optional params in [references/api-details.md](references/api-details.md) |\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n      \"phone_numbers\": [\n          {\n              \"phone_number\": \"+18005550101\"\n          }\n      ]\n  }' \\\n  \"https://api.telnyx.com/v2/number_orders\"\n```\n\nPrimary response fields:\n- `.data.id`\n- `.data.status`\n- `.data.phone_numbers_count`\n- `.data.requirements_met`\n- `.data.messaging_profile_id`\n- `.data.connection_id`\n\n### Check number order status\n\nOrder status determines whether provisioning completed or additional requirements are still blocking fulfillment.\n\n`GET /number_orders/{number_order_id}`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `number_order_id` | string (UUID) | Yes | The number order ID. |\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/number_orders/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nPrimary response fields:\n- `.data.id`\n- `.data.status`\n- `.data.requirements_met`\n- `.data.phone_numbers_count`\n- `.data.phone_numbers`\n- `.data.connection_id`\n\n---\n\n## Important Supporting Operations\n\nUse these when the core tasks above are close to your flow, but you need a common variation or follow-up step.\n\n### Create a number reservation\n\nCreate or provision an additional resource when the core tasks do not cover this flow.\n\n`POST /number_reservations`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `phone_numbers` | array[object] | Yes |  |\n| `status` | enum (pending, success, failure) | No | The status of the entire reservation. |\n| `id` | string (UUID) | No |  |\n| `record_type` | string | No |  |\n| ... | | | +3 optional params in [references/api-details.md](references/api-details.md) |\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n      \"phone_numbers\": [\n          {\n              \"phone_number\": \"+18005550101\"\n          }\n      ]\n  }' \\\n  \"https://api.telnyx.com/v2/number_reservations\"\n```\n\nPrimary response fields:\n- `.data.id`\n- `.data.status`\n- `.data.created_at`\n- `.data.updated_at`\n- `.data.customer_reference`\n- `.data.errors`\n\n### Retrieve a number reservation\n\nFetch the current state before updating, deleting, or making control-flow decisions.\n\n`GET /number_reservations/{number_reservation_id}`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `number_reservation_id` | string (UUID) | Yes | The number reservation ID. |\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/number_reservations/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nPrimary response fields:\n- `.data.id`\n- `.data.status`\n- `.data.created_at`\n- `.data.updated_at`\n- `.data.customer_reference`\n- `.data.errors`\n\n### List Advanced Orders\n\nInspect available resources or choose an existing resource before mutating it.\n\n`GET /advanced_orders`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/advanced_orders\"\n```\n\nResponse wrapper:\n- items: `.data`\n\nPrimary item fields:\n- `id`\n- `status`\n- `area_code`\n- `comments`\n- `country_code`\n- `customer_reference`\n\n### Create Advanced Order\n\nCreate or provision an additional resource when the core tasks do not cover this flow.\n\n`POST /advanced_orders`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `phone_number_type` | enum (local, mobile, toll_free, shared_cost, national, ...) | No |  |\n| `requirement_group_id` | string (UUID) | No | The ID of the requirement group to associate with this advan... |\n| `country_code` | string (ISO 3166-1 alpha-2) | No |  |\n| ... | | | +5 optional params in [references/api-details.md](references/api-details.md) |\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  \"https://api.telnyx.com/v2/advanced_orders\"\n```\n\nPrimary response fields:\n- `.data.id`\n- `.data.status`\n- `.data.area_code`\n- `.data.comments`\n- `.data.country_code`\n- `.data.customer_reference`\n\n### Update Advanced Order\n\nModify an existing resource without recreating it.\n\n`PATCH /advanced_orders/{advanced-order-id}/requirement_group`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `advanced-order-id` | string (UUID) | Yes |  |\n| `phone_number_type` | enum (local, mobile, toll_free, shared_cost, national, ...) | No |  |\n| `requirement_group_id` | string (UUID) | No | The ID of the requirement group to associate with this advan... |\n| `country_code` | string (ISO 3166-1 alpha-2) | No |  |\n| ... | | | +5 optional params in [references/api-details.md](references/api-details.md) |\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/advanced_orders/{advanced-order-id}/requirement_group\"\n```\n\nPrimary response fields:\n- `.data.id`\n- `.data.status`\n- `.data.area_code`\n- `.data.comments`\n- `.data.country_code`\n- `.data.customer_reference`\n\n### Get Advanced Order\n\nFetch the current state before updating, deleting, or making control-flow decisions.\n\n`GET /advanced_orders/{order_id}`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `order_id` | string (UUID) | Yes |  |\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/advanced_orders/{order_id}\"\n```\n\nPrimary response fields:\n- `.data.id`\n- `.data.status`\n- `.data.area_code`\n- `.data.comments`\n- `.data.country_code`\n- `.data.customer_reference`\n\n### List available phone number blocks\n\nInspect available resources or choose an existing resource before mutating it.\n\n`GET /available_phone_number_blocks`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `filter` | object | No | Consolidated filter parameter (deepObject style). |\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/available_phone_number_blocks\"\n```\n\nResponse wrapper:\n- items: `.data`\n- pagination: `.meta`\n\nPrimary item fields:\n- `phone_number`\n- `cost_information`\n- `features`\n- `range`\n- `record_type`\n- `region_information`\n\n### Retrieve all comments\n\nInspect available resources or choose an existing resource before mutating it.\n\n`GET /comments`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `filter` | object | No | Consolidated filter parameter (deepObject style). |\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/comments\"\n```\n\nResponse wrapper:\n- items: `.data`\n- pagination: `.meta`\n\nPrimary item fields:\n- `id`\n- `body`\n- `created_at`\n- `updated_at`\n- `comment_record_id`\n- `comment_record_type`\n\n---\n\n## Additional Operations\n\nUse the core tasks above first. The operations below are indexed here with exact SDK methods and required params; use [references/api-details.md](references/api-details.md) for full optional params, response schemas, and lower-frequency webhook payloads.\nBefore using any operation below, read [the optional-parameters section](references/api-details.md#optional-parameters) and [the response-schemas section](references/api-details.md#response-schemas) so you do not guess missing fields.\n\n| Operation | SDK method | Endpoint | Use when | Required params |\n|-----------|------------|----------|----------|-----------------|\n| Create a comment | HTTP only | `POST /comments` | Create or provision an additional resource when the core tasks do not cover this flow. | None |\n| Retrieve a comment | HTTP only | `GET /comments/{id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `id` |\n| Mark a comment as read | HTTP only | `PATCH /comments/{id}/read` | Modify an existing resource without recreating it. | `id` |\n| Get country coverage | HTTP only | `GET /country_coverage` | Inspect available resources or choose an existing resource before mutating it. | None |\n| Get coverage for a specific country | HTTP only | `GET /country_coverage/countries/{country_code}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `country_code` |\n| List customer service records | HTTP only | `GET /customer_service_records` | Inspect available resources or choose an existing resource before mutating it. | None |\n| Create a customer service record | HTTP only | `POST /customer_service_records` | Create or provision an additional resource when the core tasks do not cover this flow. | None |\n| Verify CSR phone number coverage | HTTP only | `POST /customer_service_records/phone_number_coverages` | Create or provision an additional resource when the core tasks do not cover this flow. | None |\n| Get a customer service record | HTTP only | `GET /customer_service_records/{customer_service_record_id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `customer_service_record_id` |\n| List inexplicit number orders | HTTP only | `GET /inexplicit_number_orders` | Inspect available resources or choose an existing resource before mutating it. | None |\n| Create an inexplicit number order | HTTP only | `POST /inexplicit_number_orders` | Create or provision an additional resource when the core tasks do not cover this flow. | `ordering_groups` |\n| Retrieve an inexplicit number order | HTTP only | `GET /inexplicit_number_orders/{id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `id` |\n| Create an inventory coverage request | HTTP only | `GET /inventory_coverage` | Inspect available resources or choose an existing resource before mutating it. | None |\n| List mobile network operators | HTTP only | `GET /mobile_network_operators` | Inspect available resources or choose an existing resource before mutating it. | None |\n| List network coverage locations | HTTP only | `GET /network_coverage` | Inspect available resources or choose an existing resource before mutating it. | None |\n| List number block orders | HTTP only | `GET /number_block_orders` | Inspect available resources or choose an existing resource before mutating it. | None |\n| Create a number block order | HTTP only | `POST /number_block_orders` | Create or provision an additional resource when the core tasks do not cover this flow. | `starting_number`, `range` |\n| Retrieve a number block order | HTTP only | `GET /number_block_orders/{number_block_order_id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `number_block_order_id` |\n| Retrieve a list of phone numbers associated to orders | HTTP only | `GET /number_order_phone_numbers` | Inspect available resources or choose an existing resource before mutating it. | None |\n| Retrieve a single phone number within a number order. | HTTP only | `GET /number_order_phone_numbers/{number_order_phone_number_id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `number_order_phone_number_id` |\n| Update requirements for a single phone number within a number order. | HTTP only | `PATCH /number_order_phone_numbers/{number_order_phone_number_id}` | Modify an existing resource without recreating it. | `number_order_phone_number_id` |\n| List number orders | HTTP only | `GET /number_orders` | Create or inspect provisioning orders for number purchases. | None |\n| Update a number order | HTTP only | `PATCH /number_orders/{number_order_id}` | Modify an existing resource without recreating it. | `number_order_id` |\n| List number reservations | HTTP only | `GET /number_reservations` | Inspect available resources or choose an existing resource before mutating it. | None |\n| Extend a number reservation | HTTP only | `POST /number_reservations/{number_reservation_id}/actions/extend` | Trigger a follow-up action in an existing workflow rather than creating a new top-level resource. | `number_reservation_id` |\n| Retrieve the features for a list of numbers | HTTP only | `POST /numbers_features` | Create or provision an additional resource when the core tasks do not cover this flow. | `phone_numbers` |\n| Lists the phone number blocks jobs | HTTP only | `GET /phone_number_blocks/jobs` | Inspect available resources or choose an existing resource before mutating it. | None |\n| Deletes all numbers associated with a phone number block | HTTP only | `POST /phone_number_blocks/jobs/delete_phone_number_block` | Create or provision an additional resource when the core tasks do not cover this flow. | `phone_number_block_id` |\n| Retrieves a phone number blocks job | HTTP only | `GET /phone_number_blocks/jobs/{id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `id` |\n| List sub number orders | HTTP only | `GET /sub_number_orders` | Inspect available resources or choose an existing resource before mutating it. | None |\n| Retrieve a sub number order | HTTP only | `GET /sub_number_orders/{sub_number_order_id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `sub_number_order_id` |\n| Update a sub number order's requirements | HTTP only | `PATCH /sub_number_orders/{sub_number_order_id}` | Modify an existing resource without recreating it. | `sub_number_order_id` |\n| Cancel a sub number order | HTTP only | `PATCH /sub_number_orders/{sub_number_order_id}/cancel` | Modify an existing resource without recreating it. | `sub_number_order_id` |\n| Create a sub number orders report | HTTP only | `POST /sub_number_orders_report` | Create or provision an additional resource when the core tasks do not cover this flow. | None |\n| Retrieve a sub number orders report | HTTP only | `GET /sub_number_orders_report/{report_id}` | Fetch the current state before updating, deleting, or making control-flow decisions. | `report_id` |\n| Download a sub number orders report | HTTP only | `GET /sub_number_orders_report/{report_id}/download` | Fetch the current state before updating, deleting, or making control-flow decisions. | `report_id` |\n\n### Other Webhook Events\n\n| Event | `data.event_type` | Description |\n|-------|-------------------|-------------|\n| `numberOrderStatusUpdate` | `number.order.status.update` | Number Order Status Update |\n\n---\n\nFor exhaustive optional parameters, full response schemas, and complete webhook payloads, see [references/api-details.md](references/api-details.md).","tags":["telnyx","numbers","curl","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk"],"capabilities":["skill","source-team-telnyx","skill-telnyx-numbers-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-numbers-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 (17,540 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-22T06:54:42.982Z","embedding":null,"createdAt":"2026-04-18T22:07:12.434Z","updatedAt":"2026-04-22T06:54:42.982Z","lastSeenAt":"2026-04-22T06:54:42.982Z","tsv":"'+1':352 '+13125550001':114 '+18005550101':378,560 '+3':534 '+5':740,842 '-1':736,838 '-2':738,840 '/actions/extend':1711 '/advanced_orders':650,697,787,900 '/available_phone_number_blocks':954 '/available_phone_numbers':241 '/cancel':1931 '/comments':1012,1139,1162,1186 '/country_coverage':1203 '/country_coverage/countries':1225 '/customer_service_records':1250,1271,1321 '/customer_service_records/phone_number_coverages':1296 '/download':2008 '/inexplicit_number_orders':1350,1371,1397 '/inventory_coverage':1421 '/mobile_network_operators':1441 '/network_coverage':1461 '/number_block_orders':1481,1502,1529 '/number_order_phone_numbers':1563,1588,1626 '/number_orders':299,415,1650,1667 '/number_reservations':504,594,1687,1707 '/numbers_features':1745 '/phone_number_blocks/jobs':1772,1826 '/phone_number_blocks/jobs/delete_phone_number_block':1797 '/read':1188 '/requirement_group':792,870 '/sub_number_orders':1849,1870,1902,1926 '/sub_number_orders_report':1952,1978,2005 '/v2/advanced_orders':661,763 '/v2/advanced_orders/':865,922 '/v2/available_phone_number_blocks':977 '/v2/available_phone_numbers':76,264 '/v2/comments':1035 '/v2/number_orders':381 '/v2/number_orders/550e8400-e29b-41d4-a716-446655440000':443 '/v2/number_reservations':563 '/v2/number_reservations/550e8400-e29b-41d4-a716-446655440000':622 '10':20 '3166':735,837 '401':59,80 '403':84 '404':87 '422':55,91 '429':52,97 'action':1717 'addit':190,408,492,685,1057,1144,1276,1301,1376,1507,1750,1802,1957 'advan':730,832 'advanc':636,679,777,789,798,867,884 'advanced-order-id':788,797,866 'agent':225 'alpha':737,839 'alway':60 'api':25,28,36,43,72,82,260,366,439,548,618,657,754,856,918,973,1031 'api.telnyx.com':75,263,380,442,562,621,660,762,864,921,976,1034 'api.telnyx.com/v2/advanced_orders':659,761 'api.telnyx.com/v2/advanced_orders/':863,920 'api.telnyx.com/v2/available_phone_number_blocks':975 'api.telnyx.com/v2/available_phone_numbers':74,262 'api.telnyx.com/v2/comments':1033 'api.telnyx.com/v2/number_orders':379 'api.telnyx.com/v2/number_orders/550e8400-e29b-41d4-a716-446655440000':441 'api.telnyx.com/v2/number_reservations':561 'api.telnyx.com/v2/number_reservations/550e8400-e29b-41d4-a716-446655440000':620 'application/json':372,554,760,862 'area':671 'array':306,511 'associ':317,332,347,727,829,1557,1788 'authent':39,57 'author':69,257,363,436,545,615,654,751,853,915,970,1028 'avail':215,639,938,943,1001,1205,1252,1352,1423,1443,1463,1483,1565,1689,1774,1851 'backoff':103 'bash':22,66,254,358,433,540,612,651,746,848,912,967,1025 'bearer':70,258,364,437,546,616,655,752,854,916,971,1029 'best':280 'bill':337,345 'block':412,941,1476,1497,1524,1531,1548,1767,1793,1815,1821 'bodi':1046 'call':44 'cancel':1918 'candid':238 'check':94,143,397 'choos':642,946,1004,1208,1255,1355,1426,1446,1466,1486,1568,1692,1777,1854 'close':469 'code':65,79,120,184,672,675,732,770,773,834,877,880,931,934,1227,1242 'comment':673,999,1051,1054,1135,1158,1180 'common':77,477 'complet':406,2045 'connect':309,316 'consolid':249,962,1020 'content':370,552,758,860 'content-typ':369,551,757,859 'control':590,896,1174,1238,1336,1409,1544,1604,1838,1885,1991,2019 'control-flow':589,895,1173,1237,1335,1408,1543,1603,1837,1884,1990,2018 'core':212,465,496,689,1061,1148,1280,1305,1380,1511,1754,1806,1961 'cost':282,711,813,989 'count':389,453 'countri':119,674,731,833,1198,1221,1226,1241 'cover':500,693,1152,1284,1309,1384,1515,1758,1810,1965 'coverag':1199,1217,1292,1416,1456 'creat':284,484,488,678,681,1047,1133,1140,1263,1272,1297,1363,1372,1413,1494,1503,1651,1724,1746,1798,1943,1953 'csr':1289 'curl':4,7,10,67,255,359,434,541,613,652,747,849,913,968,1026 'current':582,888,1166,1230,1328,1401,1536,1596,1830,1877,1983,2011 'custom':676,1244,1265,1315,1322,1339 'd':373,555 'dash':123 'data':268,665,981,1039 'data.area':769,876,930 'data.comments':771,878,932 'data.connection':395,456 'data.country':772,879,933 'data.created':569,628 'data.customer':573,632,774,881,935 'data.errors':575,634 'data.event':2028 'data.id':385,447,567,626,767,874,928 'data.messaging':392 'data.phone':387,451,454 'data.requirements':390,449 'data.status':386,448,568,627,768,875,929 'data.updated':571,630 'decis':592,898,1176,1240,1338,1411,1546,1606,1840,1887,1993,2021 'deepobject':252,965,1023 'delet':586,892,1170,1234,1332,1405,1540,1600,1785,1834,1881,1987,2015 'descript':245,303,422,508,601,701,796,906,958,1016,2030 'determin':403 'download':1996 'e.164':111 'e.g':113 'effort':281 'endpoint':128,1128 'entir':524 'entrypoint':222 'enum':157,166,515,705,807 'error':40,49,54,58,62,78,93 'event':2026,2027 'exact':1072 'exampl':32 'exhaust':2038 'exist':644,781,948,1006,1191,1210,1257,1357,1428,1448,1468,1488,1570,1634,1673,1694,1720,1779,1856,1909,1934 'exponenti':102 'export':23 'extend':1700 'fail':46 'failur':518 'featur':991,1736 'fetch':580,886,1164,1228,1326,1399,1534,1594,1828,1875,1981,2009 'field':95,159,162,169,235,273,384,446,566,625,668,766,873,927,986,1044,1124 'filter':232,246,250,959,963,1017,1021 'first':1064 'flow':472,502,591,695,897,1154,1175,1239,1286,1311,1337,1386,1410,1517,1545,1605,1760,1812,1839,1886,1967,1992,2020 'follow':481,1715 'follow-up':480,1714 'format':96,112 'found':90 'free':709,811 'frequenc':1090 'fulfil':413 'full':1082,2041 'get':240,414,593,649,883,899,953,1011,1161,1197,1202,1216,1224,1249,1313,1320,1349,1396,1420,1440,1460,1480,1528,1562,1587,1649,1686,1771,1825,1848,1869,1977,2004 'group':338,346,715,725,817,827,1388 'guess':1122 'h':68,256,362,368,435,544,550,614,653,750,756,852,858,914,969,1027 'handl':41,61 'http':1136,1159,1183,1200,1222,1247,1268,1293,1318,1347,1368,1394,1418,1438,1458,1478,1499,1526,1560,1585,1623,1647,1664,1684,1704,1742,1769,1794,1823,1846,1867,1899,1923,1949,1975,2002 'id':310,324,339,394,396,418,425,432,457,526,597,604,611,669,716,721,791,800,818,823,869,902,908,924,1045,1053,1163,1177,1187,1196,1325,1342,1398,1412,1533,1550,1593,1611,1631,1643,1670,1680,1710,1733,1816,1827,1841,1874,1891,1906,1917,1930,1942,1980,1995,2007,2023 'identifi':314,328,343 'import':104,458 'includ':115 'index':1069 'inexplicit':1344,1365,1391 'inform':283,990,996 'inlin':175 'inspect':638,942,1000,1204,1251,1351,1422,1442,1462,1482,1564,1653,1688,1773,1850 'instal':8,14 'insuffici':85 'invalid':81 'invent':154 'inventori':1415 'iso':734,836 'item':267,272,664,667,980,985,1038,1043 'job':1768,1822 'key':26,29,37,73,83,230,261,367,440,549,619,658,755,857,919,974,1032 'level':1729 'limit':51,99 'linux':17 'list':127,635,937,1243,1343,1434,1454,1474,1553,1644,1681,1739,1763,1842 'local':706,808 'locat':1457 'lower':1089 'lower-frequ':1088 'maco':16 'make':588,894,1172,1236,1334,1407,1542,1602,1836,1883,1989,2017 'mark':1178 'messag':322,330 'met':391,450 'meta':270,983,1041 'meta.total':144 'method':229,1074,1127 'miss':1123 'mobil':707,809,1435 'modifi':779,1189,1632,1671,1907,1932 'must':108 'mutat':647,951,1009,1213,1260,1360,1431,1451,1471,1491,1573,1697,1782,1859 'n':336 'nation':712,814 'navig':141 'need':171,226,475 'network':48,1436,1455 'new':1726 'none':1155,1215,1262,1287,1312,1362,1433,1453,1473,1493,1575,1659,1699,1784,1861,1968 'note':105 'numb':351 'number':3,6,107,134,217,218,239,275,286,288,296,305,321,375,377,388,398,416,423,430,452,455,486,510,557,559,578,595,602,609,703,805,940,988,1291,1345,1366,1392,1475,1496,1519,1523,1530,1547,1556,1580,1583,1589,1592,1607,1610,1618,1621,1627,1630,1639,1642,1645,1657,1662,1668,1678,1682,1702,1708,1731,1741,1762,1766,1787,1792,1814,1820,1844,1865,1872,1889,1895,1904,1915,1921,1928,1940,1946,1972,1999,2033 'number.order.status.update':2032 'numberorderstatusupd':2031 'object':247,307,512,960,1018 'oper':188,191,460,1058,1066,1096,1125,1437 'option':195,200,353,535,741,843,1083,1101,1106,2039 'optional-paramet':194,199,1100,1105 'order':287,289,399,401,417,424,431,637,680,778,790,799,868,885,901,907,923,1346,1367,1387,1393,1477,1498,1525,1532,1549,1559,1584,1590,1608,1622,1628,1640,1646,1655,1663,1669,1679,1845,1866,1873,1890,1896,1905,1916,1922,1929,1941,1947,1973,2000,2034 'page':133,136,142,145 'pagin':126,130,269,982,1040 'param':354,536,742,844,1077,1084,1132 'paramet':139,156,165,196,201,242,251,300,419,505,598,698,793,903,955,964,1013,1022,1102,1107,2040 'parenthes':125 'patch':786,851,1185,1625,1666,1901,1925 'payload':1092,2047 'pend':516 'permiss':86 'phone':106,216,274,304,320,335,350,374,376,509,556,558,702,804,939,987,1290,1555,1579,1591,1609,1617,1629,1641,1761,1765,1791,1813,1819 'post':298,361,503,543,696,749,1138,1270,1295,1370,1501,1706,1744,1796,1951 'pre':13 'pre-instal':12 'prefix':117 'primari':271,382,444,564,623,666,764,871,925,984,1042 'product':64,292 'profil':323,331,393 'provis':224,293,405,490,683,1142,1274,1299,1374,1505,1654,1748,1800,1955 'purchas':1658 'queri':138,231 'quickship':278 'rang':992,1520 'rate':50,98 'rather':1722 'read':179,192,1098,1182 'record':276,530,993,1052,1055,1246,1267,1317,1324,1341 'recreat':784,1194,1637,1676,1912,1937 'refer':149,574,633,677,775,882,936 'references/api-details.md':180,181,198,208,356,357,538,539,744,745,846,847,1079,1080,1104,1114,2049,2050 'region':995 'report':1948,1974,1979,1994,2001,2006,2022 'request':1417 'requir':244,302,409,421,507,600,700,714,724,795,816,826,905,957,1015,1076,1131,1613,1898 'reserv':279,487,525,579,596,603,610,1683,1703,1709,1732 'resourc':88,493,640,645,686,782,944,949,1002,1007,1145,1192,1206,1211,1253,1258,1277,1302,1353,1358,1377,1424,1429,1444,1449,1464,1469,1484,1489,1508,1566,1571,1635,1674,1690,1695,1730,1751,1775,1780,1803,1852,1857,1910,1935,1958 'respons':148,158,168,205,210,265,383,445,565,624,662,765,872,926,978,1036,1085,1111,1116,2042 'response-schema':204,209,1110,1115 'result':131 'retri':100 'retriev':576,997,1156,1389,1521,1551,1576,1734,1817,1862,1969 'return':129,236 'rule':151 'schema':206,211,1086,1112,1117,2043 'sdk':1073,1126 'search':214,219,228 'section':197,207,1103,1113 'see':2048 'select':297 'servic':1245,1266,1316,1323,1340 'setup':21 'share':710,812 'shown':174 'singl':1578,1616 'size':137 'skill':178 'skill-telnyx-numbers-curl' 'source-team-telnyx' 'space':122 'specif':1220 'start':1518 'state':583,889,1167,1231,1329,1402,1537,1597,1831,1878,1984,2012 'status':400,402,514,521,670,2035 'step':294,483 'still':411 'string':311,325,340,426,527,532,605,717,733,801,819,835,909 'style':253,966,1024 'sub':1843,1864,1871,1888,1894,1903,1914,1920,1927,1939,1945,1971,1998 'success':517 'support':459 'task':213,466,497,690,1062,1149,1281,1306,1381,1512,1755,1807,1962 'telnyx':2,5,24,35,71,155,259,365,438,547,617,656,753,855,917,972,1030 'telnyx-numbers-curl':1 'text':9 'toll':708,810 'top':1728 'top-level':1727 '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':1712 'type':243,277,301,371,420,506,531,553,599,699,704,759,794,806,861,904,956,994,1014,1056,2029 'updat':585,776,891,1049,1169,1233,1331,1404,1539,1599,1612,1660,1833,1880,1892,1986,2014,2036 'use':34,132,150,186,461,1059,1078,1094,1129 'uuid':312,326,341,427,528,606,718,802,820,910 'valid':53,92 'variat':478 'verifi':1288 'webhook':161,1091,2025,2046 'whether':404 'window':19 'within':1581,1619 'without':783,1193,1636,1675,1911,1936 'workflow':1721 'wrapper':266,663,979,1037 'write':183 'x':360,542,748,850 'yes':308,428,513,607,803,911","prices":[{"id":"4bb2615c-2105-4ffb-87dc-0bdfbd3829aa","listingId":"15423c25-d1dd-435d-be8d-70413e3023cb","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:07:12.434Z"}],"sources":[{"listingId":"15423c25-d1dd-435d-be8d-70413e3023cb","source":"github","sourceId":"team-telnyx/ai/telnyx-numbers-curl","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-numbers-curl","isPrimary":false,"firstSeenAt":"2026-04-18T22:07:12.434Z","lastSeenAt":"2026-04-22T06:54:42.982Z"}],"details":{"listingId":"15423c25-d1dd-435d-be8d-70413e3023cb","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-numbers-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":"1510f661dcdb4b951f9ff1ede37cce7af59bbe06","skill_md_path":"skills/telnyx-numbers-curl/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-numbers-curl"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-numbers-curl","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-numbers-curl"},"updatedAt":"2026-04-22T06:54:42.982Z"}}