Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Configure voicemail, voice channels, and emergency (E911) services for your phone numbers. This skill provides Python SDK examples.
.claude/skills/team-telnyx-telnyx-numbers-services-python/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 203% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 60% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 149% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 94% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 175% | 0% |
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
bashpip install telnyx
pythonimport os from telnyx import Telnyx client = Telnyx( api_key=os.environ.get("TELNYX_API_KEY"), # This is the default and can be omitted )
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:
pythonimport telnyx try: result = client.messages.send(to="+13125550001", from_="+13125550002", text="Hello") except telnyx.APIConnectionError: print("Network error — check connectivity and retry") except telnyx.RateLimitError: # 429: rate limited — wait and retry with exponential backoff import time time.sleep(1) # Check Retry-After header for actual delay except telnyx.APIStatusError as e: print(f"API error {e.status_code}: {e.message}") if e.status_code == 422: print("Validation error — check required fields and formats")
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).
for item in page_result: to iterate through all pages automatically.Returns the non-US voice channels for your account. voice channels allow you to use Channel Billing for calls to your Telnyx phone numbers. Please check the Telnyx Support Articles section for full information and examples of how to utilize Channel Billing.
GET /channel_zones
pythonpage = client.channel_zones.list() page = page.data[0] print(page.id)
Returns: channels (int64), countries (arraystring]), created_at (string), id (string), name (string), record_type (enum: channel_zone), updated_at (string)
Update the number of Voice Channels for the Non-US Zones. This allows your account to handle multiple simultaneous inbound calls to Non-US numbers. Use this endpoint to increase or decrease your capacity based on expected call volume.
PUT /channel_zones/{channel_zone_id} — Required: channels
pythonchannel_zone = client.channel_zones.update( channel_zone_id="550e8400-e29b-41d4-a716-446655440000", channels=0, ) print(channel_zone.id)
Returns: channels (int64), countries (arraystring]), created_at (string), id (string), name (string), record_type (enum: channel_zone), updated_at (string)
Returns the dynamic emergency addresses according to filters
GET /dynamic_emergency_addresses
pythonpage = client.dynamic_emergency_addresses.list() page = page.data[0] print(page.id)
Returns: administrative_area (string), country_code (enum: US, CA, PR), created_at (string), extended_address (string), house_number (string), house_suffix (string), id (string), locality (string), postal_code (string), record_type (string), sip_geolocation_id (string), status (enum: pending, activated, rejected), street_name (string), street_post_directional (string), street_pre_directional (string), street_suffix (string), updated_at (string)
Creates a dynamic emergency address.
POST /dynamic_emergency_addresses — Required: house_number, street_name, locality, administrative_area, postal_code, country_code
Optional: created_at (string), extended_address (string), house_suffix (string), id (string), record_type (string), sip_geolocation_id (string), status (enum: pending, activated, rejected), street_post_directional (string), street_pre_directional (string), street_suffix (string), updated_at (string)
pythondynamic_emergency_address = client.dynamic_emergency_addresses.create( administrative_area="TX", country_code="US", house_number="600", locality="Austin", postal_code="78701", street_name="Congress", ) print(dynamic_emergency_address.data)
Returns: administrative_area (string), country_code (enum: US, CA, PR), created_at (string), extended_address (string), house_number (string), house_suffix (string), id (string), locality (string), postal_code (string), record_type (string), sip_geolocation_id (string), status (enum: pending, activated, rejected), street_name (string), street_post_directional (string), street_pre_directional (string), street_suffix (string), updated_at (string)
Returns the dynamic emergency address based on the ID provided
GET /dynamic_emergency_addresses/{id}
pythondynamic_emergency_address = client.dynamic_emergency_addresses.retrieve( "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", ) print(dynamic_emergency_address.data)
Returns: administrative_area (string), country_code (enum: US, CA, PR), created_at (string), extended_address (string), house_number (string), house_suffix (string), id (string), locality (string), postal_code (string), record_type (string), sip_geolocation_id (string), status (enum: pending, activated, rejected), street_name (string), street_post_directional (string), street_pre_directional (string), street_suffix (string), updated_at (string)
Deletes the dynamic emergency address based on the ID provided
DELETE /dynamic_emergency_addresses/{id}
pythondynamic_emergency_address = client.dynamic_emergency_addresses.delete( "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", ) print(dynamic_emergency_address.data)
Returns: administrative_area (string), country_code (enum: US, CA, PR), created_at (string), extended_address (string), house_number (string), house_suffix (string), id (string), locality (string), postal_code (string), record_type (string), sip_geolocation_id (string), status (enum: pending, activated, rejected), street_name (string), street_post_directional (string), street_pre_directional (string), street_suffix (string), updated_at (string)
Returns the dynamic emergency endpoints according to filters
GET /dynamic_emergency_endpoints
pythonpage = client.dynamic_emergency_endpoints.list() page = page.data[0] print(page.dynamic_emergency_address_id)
Returns: callback_number (string), caller_name (string), created_at (string), dynamic_emergency_address_id (string), id (string), record_type (string), sip_from_id (string), status (enum: pending, activated, rejected), updated_at (string)
Creates a dynamic emergency endpoints.
POST /dynamic_emergency_endpoints — Required: dynamic_emergency_address_id, callback_number, caller_name
Optional: created_at (string), id (string), record_type (string), sip_from_id (string), status (enum: pending, activated, rejected), updated_at (string)
pythondynamic_emergency_endpoint = client.dynamic_emergency_endpoints.create( callback_number="+13125550000", caller_name="Jane Doe Desk Phone", dynamic_emergency_address_id="0ccc7b54-4df3-4bca-a65a-3da1ecc777f0", ) print(dynamic_emergency_endpoint.data)
Returns: callback_number (string), caller_name (string), created_at (string), dynamic_emergency_address_id (string), id (string), record_type (string), sip_from_id (string), status (enum: pending, activated, rejected), updated_at (string)
Returns the dynamic emergency endpoint based on the ID provided
GET /dynamic_emergency_endpoints/{id}
pythondynamic_emergency_endpoint = client.dynamic_emergency_endpoints.retrieve( "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", ) print(dynamic_emergency_endpoint.data)
Returns: callback_number (string), caller_name (string), created_at (string), dynamic_emergency_address_id (string), id (string), record_type (string), sip_from_id (string), status (enum: pending, activated, rejected), updated_at (string)
Deletes the dynamic emergency endpoint based on the ID provided
DELETE /dynamic_emergency_endpoints/{id}
pythondynamic_emergency_endpoint = client.dynamic_emergency_endpoints.delete( "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", ) print(dynamic_emergency_endpoint.data)
Returns: callback_number (string), caller_name (string), created_at (string), dynamic_emergency_address_id (string), id (string), record_type (string), sip_from_id (string), status (enum: pending, activated, rejected), updated_at (string)
Returns the US Zone voice channels for your account. voice channels allows you to use Channel Billing for calls to your Telnyx phone numbers. Please check the Telnyx Support Articles section for full information and examples of how to utilize Channel Billing.
GET /inbound_channels
pythoninbound_channels = client.inbound_channels.list() print(inbound_channels.data)
Returns: channels (integer), record_type (string)
Update the number of Voice Channels for the US Zone. This allows your account to handle multiple simultaneous inbound calls to US numbers. Use this endpoint to increase or decrease your capacity based on expected call volume.
PATCH /inbound_channels — Required: channels
pythoninbound_channel = client.inbound_channels.update( channels=7, ) print(inbound_channel.data)
Returns: channels (integer), record_type (string)
Retrieve a list of all phone numbers using Channel Billing, grouped by Zone.
GET /list
pythonresponse = client.list.retrieve_all() print(response.data)
Returns: number_of_channels (integer), numbers (arrayobject]), zone_id (string), zone_name (string)
Retrieve a list of phone numbers using Channel Billing for a specific Zone.
GET /list/{channel_zone_id}
pythonresponse = client.list.retrieve_by_zone( "channel_zone_id", ) print(response.data)
Returns: number_of_channels (integer), numbers (arrayobject]), zone_id (string), zone_name (string)
Returns the voicemail settings for a phone number
GET /phone_numbers/{phone_number_id}/voicemail
pythonvoicemail = client.phone_numbers.voicemail.retrieve( "123455678900", ) print(voicemail.data)
Returns: enabled (boolean), pin (string)
Create voicemail settings for a phone number
POST /phone_numbers/{phone_number_id}/voicemail
Optional: enabled (boolean), pin (string)
pythonvoicemail = client.phone_numbers.voicemail.create( phone_number_id="123455678900", ) print(voicemail.data)
Returns: enabled (boolean), pin (string)
Update voicemail settings for a phone number
PATCH /phone_numbers/{phone_number_id}/voicemail
Optional: enabled (boolean), pin (string)
pythonvoicemail = client.phone_numbers.voicemail.update( phone_number_id="123455678900", ) print(voicemail.data)
Returns: enabled (boolean), pin (string)
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 11,228 | 8,389 | -25% | 1 | 1 | 0% | 1,730 | 5,245 | +203% | 0 | 0 | — |
case-02 | fail→pass | 15,357 | 7,574 | -51% | 1 | 1 | 0% | 3,119 | 5,002 | +60% | 0 | 0 | — |
case-03 | fail→pass | 9,391 | 5,810 | -38% | 1 | 1 | 0% | 1,880 | 4,675 | +149% | 0 | 0 | — |
case-04 | fail→pass | 11,273 | 3,787 | -66% | 1 | 1 | 0% | 2,141 | 4,148 | +94% | 0 | 0 | — |
case-05 | fail→pass | 8,391 | 4,127 | -51% | 1 | 1 | 0% | 1,578 | 4,341 | +175% | 0 | 0 | — |
case-06 | fail→pass | 5,762 | 3,177 | -45% | 1 | 1 | 0% | 1,025 | 4,052 | +295% | 0 | 0 | — |
case-07 | fail→pass | 4,498 | 3,138 | -30% | 1 | 1 | 0% | 924 | 4,048 | +338% | 0 | 0 | — |
case-08 | fail→pass | 7,350 | 4,224 | -43% | 1 | 1 | 0% | 1,466 | 4,314 | +194% | 0 | 0 | — |
case-09 | fail→pass | 5,737 | 3,307 | -42% | 1 | 1 | 0% | 1,089 | 4,081 | +275% | 0 | 0 | — |
case-10 | fail→pass | 4,036 | 2,848 | -29% | 1 | 1 | 0% | 814 | 4,055 | +398% | 0 | 0 | — |
case-11 | fail→pass | 7,634 | 2,779 | -64% | 1 | 1 | 0% | 1,647 | 4,040 | +145% | 0 | 0 | — |
case-12 | fail→pass | 8,864 | 4,745 | -46% | 1 | 1 | 0% | 1,753 | 4,351 | +148% | 0 | 0 | — |
case-13 | fail→pass | 12,986 | 3,666 | -72% | 1 | 1 | 0% | 2,317 | 4,181 | +80% | 0 | 0 | — |
case-14 | fail→pass | 12,529 | 7,408 | -41% | 1 | 1 | 0% | 2,314 | 4,971 | +115% | 0 | 0 | — |
case-15 | fail→pass | 10,898 | 4,552 | -58% | 1 | 1 | 0% | 2,149 | 4,351 | +102% | 0 | 0 | — |
case-16 | fail→pass | 13,831 | 5,087 | -63% | 1 | 1 | 0% | 2,654 | 4,569 | +72% | 0 | 0 | — |
case-17 | fail→pass | 9,333 | 3,880 | -58% | 1 | 1 | 0% | 1,741 | 4,130 | +137% | 0 | 0 | — |
case-18 | pass→pass | 10,191 | 5,806 | -43% | 1 | 1 | 0% | 1,990 | 4,650 | +134% | 0 | 0 | — |
case-19 | pass→pass | 10,365 | 3,571 | -66% | 1 | 1 | 0% | 1,908 | 4,086 | +114% | 0 | 0 | — |
case-20 | pass→pass | 8,578 | 9,437 | +10% | 1 | 1 | 0% | 1,664 | 4,852 | +192% | 0 | 0 | — |
case-21 | pass→pass | 5,630 | 6,614 | +17% | 1 | 1 | 0% | 1,176 | 4,834 | +311% | 0 | 0 | — |
case-22 | pass→pass | 6,330 | 4,994 | -21% | 1 | 1 | 0% | 1,297 | 4,539 | +250% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +77 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.