Telnyx Numbers Curl logo

Telnyx Numbers Curl

Organization
team-telnyx
telnyx-numbers-curl

Search, order, and manage phone numbers by location, features, and coverage.

Overview

Publisherteam-telnyx
Repositoryai
Skill nametelnyx-numbers-curl
Stars
217
Forks
21
Bundled files
1
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by team-telnyx on GitHub. Read the source before you install it.

Installation

Install the Telnyx Numbers Curl AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/team-telnyx/ai.git /tmp/ai
mkdir -p .claude/skills
cp -r /tmp/ai/providers/claude/plugins/telnyx-numbers/skills/telnyx-numbers-curl .claude/skills/telnyx-numbers-curl
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Telnyx Numbers Curl in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Telnyx Numbers Curl on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Telnyx Numbers Curl is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Telnyx Numbers - curl

Installation

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

Setup

bash
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:

bash
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).
bash
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
bash
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.
bash
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
bash
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.
bash
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

bash
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
bash
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)YesUnique identifier of the advanced order.
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
bash
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)YesUnique identifier of the order.
bash
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).
bash
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).
bash
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.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Telnyx Numbers Curl AI skill do?

Search, order, and manage phone numbers by location, features, and coverage.

Why use Telnyx Numbers Curl on TypingMind?

Because you install it once and use it with any model. Telnyx Numbers Curl is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Telnyx Numbers Curl in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/team-telnyx/ai/tree/main/providers/claude/plugins/telnyx-numbers/skills/telnyx-numbers-curl. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Telnyx Numbers Curl?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Telnyx Numbers Curl?

As many as you like. As long as a model supports skills, you can use Telnyx Numbers Curl with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Telnyx Numbers Curl AI skill free?

Yes. It is published on GitHub by team-telnyx under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇