Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

telnyx-numbers-curltelnyx 数字卷曲

Agent Skill

telnyx-numbers-curl 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

306

周安装

13

GitHub Stars

171

下载量

107
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:telnyx-numbers-curl(telnyx 数字卷曲)
来源仓库:https://github.com/team-telnyx/skills
仓库路径:skills/telnyx-numbers-curl
安装命令:
npx skills add https://github.com/team-telnyx/skills --skill telnyx-numbers-curl
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/team-telnyx/skills --skill telnyx-numbers-curl

简介

用于查找、检索和筛选相关信息。telnyx-numbers-curl 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和 README 文档验证具体用法。
  • 安装方式:通过 GitHub 仓库安装,支持主流 AI 工具。
  • 使用前应确认权限范围,避免触发不必要的网络请求。

SKILL.md

Telnyx Numbers - curl

Installation

# curl is pre-installed on macOS, Linux, and Windows 10+

Setup

export TELNYX_API_KEY="YOUR_API_KEY_HERE"

All examples below use $TELNYX_API_KEY for authentication.

Error Handling

All API calls can fail with network errors, rate limits (429), validation errors (422), or authentication errors (401). Always handle errors in production code:

curl -H "Authorization: Bearer $TELNYX_API_KEY" "https://api.telnyx.com/v2/available_phone_numbers"

Common error codes: 401 invalid API key, 403 insufficient permissions, 404 resource not found, 422 validation error (check field formats), 429 rate limited (retry with exponential backoff).

Important Notes

  • Phone numbers must be in E.164 format (e.g., +13125550001). Include the + prefix and country code. No spaces, dashes, or parentheses.
  • Pagination: List endpoints return paginated results. Use page[number] and page[size] query parameters to navigate pages. Check meta.total_pages in the response.

Reference Use Rules

Do not invent Telnyx parameters, enums, response fields, or webhook fields.

Core Tasks

Search available phone numbers

Number search is the entrypoint for provisioning. Agents need the search method, key query filters, and the fields returned for candidate numbers.

GET /available_phone_numbers

ParameterTypeRequiredDescription
filterobjectNoConsolidated filter parameter (deepObject style).
curl -H "Authorization: Bearer $TELNYX_API_KEY" "https://api.telnyx.com/v2/available_phone_numbers"

Response wrapper:

  • items: .data
  • pagination: .meta

Primary item fields:

  • phone_number
  • record_type
  • quickship
  • reservable
  • best_effort
  • cost_information

Create a number order

Number ordering is the production provisioning step after number selection.

POST /number_orders

ParameterTypeRequiredDescription
phone_numbersarray[object]Yes
connection_idstring (UUID)NoIdentifies the connection associated with this phone number.
messaging_profile_idstring (UUID)NoIdentifies the messaging profile associated with the phone n...
billing_group_idstring (UUID)NoIdentifies the billing group associated with the phone numbe...
...+1 optional params in references/api-details.md
curl \
  -X POST \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
      "phone_numbers": [
          {
              "phone_number": "+18005550101"
          }
      ]
  }' \
  "https://api.telnyx.com/v2/number_orders"

Primary response fields:

  • .data.id
  • .data.status
  • .data.phone_numbers_count
  • .data.requirements_met
  • .data.messaging_profile_id
  • .data.connection_id

Check number order status

Order status determines whether provisioning completed or additional requirements are still blocking fulfillment.

GET /number_orders/{number_order_id}

ParameterTypeRequiredDescription
number_order_idstring (UUID)YesThe number order ID.
curl -H "Authorization: Bearer $TELNYX_API_KEY" "https://api.telnyx.com/v2/number_orders/550e8400-e29b-41d4-a716-446655440000"

Primary response fields:

  • .data.id
  • .data.status
  • .data.requirements_met
  • .data.phone_numbers_count
  • .data.phone_numbers
  • .data.connection_id

Important Supporting Operations

Use these when the core tasks above are close to your flow, but you need a common variation or follow-up step.

Create a number reservation

Create or provision an additional resource when the core tasks do not cover this flow.

POST /number_reservations

ParameterTypeRequiredDescription
phone_numbersarray[object]Yes
statusenum (pending, success, failure)NoThe status of the entire reservation.
idstring (UUID)No
record_typestringNo
...+3 optional params in references/api-details.md
curl \
  -X POST \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
      "phone_numbers": [
          {
              "phone_number": "+18005550101"
          }
      ]
  }' \
  "https://api.telnyx.com/v2/number_reservations"

Primary response fields:

  • .data.id
  • .data.status
  • .data.created_at
  • .data.updated_at
  • .data.customer_reference
  • .data.errors

Retrieve a number reservation

Fetch the current state before updating, deleting, or making control-flow decisions.

GET /number_reservations/{number_reservation_id}

ParameterTypeRequiredDescription
number_reservation_idstring (UUID)YesThe number reservation ID.
curl -H "Authorization: Bearer $TELNYX_API_KEY" "https://api.telnyx.com/v2/number_reservations/550e8400-e29b-41d4-a716-446655440000"

Primary response fields:

  • .data.id
  • .data.status
  • .data.created_at
  • .data.updated_at
  • .data.customer_reference
  • .data.errors

List Advanced Orders

Inspect available resources or choose an existing resource before mutating it.

GET /advanced_orders

curl -H "Authorization: Bearer $TELNYX_API_KEY" "https://api.telnyx.com/v2/advanced_orders"

Response wrapper:

  • items: .data

Primary item fields:

  • id
  • status
  • area_code
  • comments
  • country_code
  • customer_reference

Create Advanced Order

Create or provision an additional resource when the core tasks do not cover this flow.

POST /advanced_orders

ParameterTypeRequiredDescription
phone_number_typeenum (local, mobile, toll_free, shared_cost, national,...)No
requirement_group_idstring (UUID)NoThe ID of the requirement group to associate with this advan...
country_codestring (ISO 3166-1 alpha-2)No
...+5 optional params in references/api-details.md
curl \
  -X POST \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  "https://api.telnyx.com/v2/advanced_orders"

Primary response fields:

  • .data.id
  • .data.status
  • .data.area_code
  • .data.comments
  • .data.country_code
  • .data.customer_reference

Update Advanced Order

Modify an existing resource without recreating it.

PATCH /advanced_orders/{advanced-order-id}/requirement_group

ParameterTypeRequiredDescription
advanced-order-idstring (UUID)Yes
phone_number_typeenum (local, mobile, toll_free, shared_cost, national,...)No
requirement_group_idstring (UUID)NoThe ID of the requirement group to associate with this advan...
country_codestring (ISO 3166-1 alpha-2)No
...+5 optional params in references/api-details.md
curl \
  -X PATCH \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  "https://api.telnyx.com/v2/advanced_orders/{advanced-order-id}/requirement_group"

Primary response fields:

  • .data.id
  • .data.status
  • .data.area_code
  • .data.comments
  • .data.country_code
  • .data.customer_reference

Get Advanced Order

Fetch the current state before updating, deleting, or making control-flow decisions.

GET /advanced_orders/{order_id}

ParameterTypeRequiredDescription
order_idstring (UUID)Yes
curl -H "Authorization: Bearer $TELNYX_API_KEY" "https://api.telnyx.com/v2/advanced_orders/{order_id}"

Primary response fields:

  • .data.id
  • .data.status
  • .data.area_code
  • .data.comments
  • .data.country_code
  • .data.customer_reference

List available phone number blocks

Inspect available resources or choose an existing resource before mutating it.

GET /available_phone_number_blocks

ParameterTypeRequiredDescription
filterobjectNoConsolidated filter parameter (deepObject style).
curl -H "Authorization: Bearer $TELNYX_API_KEY" "https://api.telnyx.com/v2/available_phone_number_blocks"

Response wrapper:

  • items: .data
  • pagination: .meta

Primary item fields:

  • phone_number
  • cost_information
  • features
  • range
  • record_type
  • region_information

Retrieve all comments

Inspect available resources or choose an existing resource before mutating it.

GET /comments

ParameterTypeRequiredDescription
filterobjectNoConsolidated filter parameter (deepObject style).
curl -H "Authorization: Bearer $TELNYX_API_KEY" "https://api.telnyx.com/v2/comments"

Response wrapper:

  • items: .data
  • pagination: .meta

Primary item fields:

  • id
  • body
  • created_at
  • updated_at
  • comment_record_id
  • comment_record_type

Additional Operations

Use the core tasks above first. The operations below are indexed here with exact SDK methods and required params; use references/api-details.md for full optional params, response schemas, and lower-frequency webhook payloads. Before using any operation below, read the optional-parameters section and the response-schemas section so you do not guess missing fields.

OperationSDK methodEndpointUse whenRequired params
Create a commentHTTP onlyPOST /commentsCreate or provision an additional resource when the core tasks do not cover this flow.None
Retrieve a commentHTTP onlyGET /comments/{id}Fetch the current state before updating, deleting, or making control-flow decisions.id
Mark a comment as readHTTP onlyPATCH /comments/{id}/readModify an existing resource without recreating it.id
Get country coverageHTTP onlyGET /country_coverageInspect available resources or choose an existing resource before mutating it.None
Get coverage for a specific countryHTTP onlyGET /country_coverage/countries/{country_code}Fetch the current state before updating, deleting, or making control-flow decisions.country_code
List customer service recordsHTTP onlyGET /customer_service_recordsInspect available resources or choose an existing resource before mutating it.None
Create a customer service recordHTTP onlyPOST /customer_service_recordsCreate or provision an additional resource when the core tasks do not cover this flow.None
Verify CSR phone number coverageHTTP onlyPOST /customer_service_records/phone_number_coveragesCreate or provision an additional resource when the core tasks do not cover this flow.None
Get a customer service recordHTTP onlyGET /customer_service_records/{customer_service_record_id}Fetch the current state before updating, deleting, or making control-flow decisions.customer_service_record_id
List inexplicit number ordersHTTP onlyGET /inexplicit_number_ordersInspect available resources or choose an existing resource before mutating it.None
Create an inexplicit number orderHTTP onlyPOST /inexplicit_number_ordersCreate or provision an additional resource when the core tasks do not cover this flow.ordering_groups
Retrieve an inexplicit number orderHTTP onlyGET /inexplicit_number_orders/{id}Fetch the current state before updating, deleting, or making control-flow decisions.id
Create an inventory coverage requestHTTP onlyGET /inventory_coverageInspect available resources or choose an existing resource before mutating it.None
List mobile network operatorsHTTP onlyGET /mobile_network_operatorsInspect available resources or choose an existing resource before mutating it.None
List network coverage locationsHTTP onlyGET /network_coverageInspect available resources or choose an existing resource before mutating it.None
List number block ordersHTTP onlyGET /number_block_ordersInspect available resources or choose an existing resource before mutating it.None
Create a number block orderHTTP onlyPOST /number_block_ordersCreate or provision an additional resource when the core tasks do not cover this flow.starting_number, range
Retrieve a number block orderHTTP onlyGET /number_block_orders/{number_block_order_id}Fetch the current state before updating, deleting, or making control-flow decisions.number_block_order_id
Retrieve a list of phone numbers associated to ordersHTTP onlyGET /number_order_phone_numbersInspect available resources or choose an existing resource before mutating it.None
Retrieve a single phone number within a number order.HTTP onlyGET /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
Update requirements for a single phone number within a number order.HTTP onlyPATCH /number_order_phone_numbers/{number_order_phone_number_id}Modify an existing resource without recreating it.number_order_phone_number_id
List number ordersHTTP onlyGET /number_ordersCreate or inspect provisioning orders for number purchases.None
Update a number orderHTTP onlyPATCH /number_orders/{number_order_id}Modify an existing resource without recreating it.number_order_id
List number reservationsHTTP onlyGET /number_reservationsInspect available resources or choose an existing resource before mutating it.None
Extend a number reservationHTTP onlyPOST /number_reservations/{number_reservation_id}/actions/extendTrigger a follow-up action in an existing workflow rather than creating a new top-level resource.number_reservation_id
Retrieve the features for a list of numbersHTTP onlyPOST /numbers_featuresCreate or provision an additional resource when the core tasks do not cover this flow.phone_numbers
Lists the phone number blocks jobsHTTP onlyGET /phone_number_blocks/jobsInspect available resources or choose an existing resource before mutating it.None
Deletes all numbers associated with a phone number blockHTTP onlyPOST /phone_number_blocks/jobs/delete_phone_number_blockCreate or provision an additional resource when the core tasks do not cover this flow.phone_number_block_id
Retrieves a phone number blocks jobHTTP onlyGET /phone_number_blocks/jobs/{id}Fetch the current state before updating, deleting, or making control-flow decisions.id
List sub number ordersHTTP onlyGET /sub_number_ordersInspect available resources or choose an existing resource before mutating it.None
Retrieve a sub number orderHTTP onlyGET /sub_number_orders/{sub_number_order_id}Fetch the current state before updating, deleting, or making control-flow decisions.sub_number_order_id
Update a sub number order's requirementsHTTP onlyPATCH /sub_number_orders/{sub_number_order_id}Modify an existing resource without recreating it.sub_number_order_id
Cancel a sub number orderHTTP onlyPATCH /sub_number_orders/{sub_number_order_id}/cancelModify an existing resource without recreating it.sub_number_order_id
Create a sub number orders reportHTTP onlyPOST /sub_number_orders_reportCreate or provision an additional resource when the core tasks do not cover this flow.None
Retrieve a sub number orders reportHTTP onlyGET /sub_number_orders_report/{report_id}Fetch the current state before updating, deleting, or making control-flow decisions.report_id
Download a sub number orders reportHTTP onlyGET /sub_number_orders_report/{report_id}/downloadFetch the current state before updating, deleting, or making control-flow decisions.report_id

Other Webhook Events

Eventdata.event_typeDescription
numberOrderStatusUpdatenumber.order.status.updateNumber Order Status Update

For exhaustive optional parameters, full response schemas, and complete webhook payloads, see references/api-details.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.49%
按下载量换算40

Claude

28.06%
按下载量换算30

Cursor

19.97%
按下载量换算21

Gemini CLI

9.92%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills