telnyx-ai-assistants-c…
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
Search, order, and manage phone numbers by location, features, and coverage.
$ npx -y skills add team-telnyx/ai --skill telnyx-numbers-go --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/telnyx-numbers-goContext preview
The summary Claude sees to decide when to auto-load this skill.
Search, order, and manage phone numbers by location, features, and coverage.
name: telnyx-numbers-go description: >- Search, order, and manage phone numbers by location, features, and coverage. metadata: author: telnyx product: numbers language: go generated_by: telnyx-openapi-pipeline contract: v2
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
go get github.com/team-telnyx/telnyx-go
import (
"context"
"fmt"
"os"
"github.com/team-telnyx/telnyx-go"
"github.com/team-telnyx/telnyx-go/option"
)
client := telnyx.NewClient(
option.WithAPIKey(os.Getenv("TELNYX_API_KEY")),
)All examples below assume `client` is already initialized as shown above.
All API calls can fail with network errors, rate limits (429), validation errors (422), or authentication errors (401). Always handle errors in production code:
import "errors"
availablePhoneNumbers, err := client.AvailablePhoneNumbers.List(context.Background(), telnyx.AvailablePhoneNumberListParams{})
if err != nil {
var apiErr *telnyx.Error
if errors.As(err, &apiErr) {
switch apiErr.StatusCode {
case 422:
fmt.Println("Validation error — check required fields and formats")
case 429:
fmt.Println("Rate limited, retrying...")
default:
fmt.Printf("API error %d: %s\n", apiErr.StatusCode, apiErr.Error())
}
} else {
fmt.Println("Network error — check connectivity and retry")
}
}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).
Do not invent Telnyx parameters, enums, response fields, or webhook fields.
Number search is the entrypoint for provisioning. Agents need the search method, key query filters, and the fields returned for candidate numbers.
`client.AvailablePhoneNumbers.List()` — `GET /available_phone_numbers`
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `Filter` | object | No | Consolidated filter parameter (deepObject style). |
availablePhoneNumbers, err := client.AvailablePhoneNumbers.List(context.Background(), telnyx.AvailablePhoneNumberListParams{})
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", availablePhoneNumbers.Data)Response wrapper:
Primary item fields:
Number ordering is the production provisioning step after number selection.
`client.NumberOrders.New()` — `POST /number_orders`
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `PhoneNumbers` | array[object] | Yes | | | `ConnectionId` | string (UUID) | No | Identifies the connection associated with this phone number. | | `MessagingProfileId` | string (UUID) | No | Identifies the messaging profile associated with the phone n... | | `BillingGroupId` | string (UUID) | No | Identifies the billing group associated with the phone numbe... | | ... | | | +1 optional params in [references/api-details.md](references/api-details.md) |
numberOrder, err := client.NumberOrders.New(context.Background(), telnyx.NumberOrderNewParams{
PhoneNumbers: []telnyx.NumberOrderNewParamsPhoneNumber{{PhoneNumber: "+18005550101"}},
})
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", numberOrder.Data)Primary response fields:
Order status determines whether provisioning completed or additional requirements are still blocking fulfillment.
`client.NumberOrders.Get()` — `GET /number_orders/{number_order_id}`
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `NumberOrderId` | string (UUID) | Yes | The number order ID. |
numberOrder, err := client.NumberOrders.Get(context.Background(), "number_order_id")
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", numberOrder.Data)Primary response fields:
---
Use these when the core tasks above are close to your flow, but you need a common variation or follow-up step.
Create or provision an additional resource when the core tasks do not cover this flow.
`client.NumberReservations.New()` — `POST /number_reservations`
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `PhoneNumbers` | array[object] | Yes | | | `Status` | enum (pending, success, failure) | No | The status of the entire reservation. | | `Id` | string (UUID) | No | | | `RecordType` | string | No | | | ... |
This repo is the one-stop shop for AI Agents and AI-first developers building with Telnyx — everything an agent needs to build production-grade applications and manage its account, from signup to funding.
Repo: team-telnyx/ai
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.