Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Manage account balance, payments, invoices, webhooks, and view audit logs and detail records. This skill provides JavaScript SDK examples.
.claude/skills/team-telnyx-telnyx-account-javascript/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 30% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 39% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 39% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 65% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 110% | 0% |
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
bashnpm install telnyx@6.74.2
javascriptimport Telnyx from 'telnyx'; const client = new Telnyx({ apiKey: process.env['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:
javascripttry { const result = await client.messages.send({ to: '+13125550001', from: '+13125550002', text: 'Hello' }); } catch (err) { if (err instanceof Telnyx.APIConnectionError) { console.error('Network error — check connectivity and retry'); } else if (err instanceof Telnyx.RateLimitError) { // 429: rate limited — wait and retry with exponential backoff const retryAfter = err.headers?.['retry-after'] || 1; await new Promise(r => setTimeout(r, retryAfter * 1000)); } else if (err instanceof Telnyx.APIError) { console.error(`API error ${err.status}: ${err.message}`); if (err.status === 422) { console.error('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 await (const item of result) { ... } to iterate through all pages automatically.Retrieve a list of audit log entries. Audit logs are a best-effort, eventually consistent record of significant account-related changes.
GET /audit_events
javascript// Automatically fetches more pages as needed. for await (const auditEventListResponse of client.auditEvents.list()) { console.log(auditEventListResponse.id); }
Returns: alternate_resource_id (string | null), change_made_by (enum: telnyx, account_manager, account_owner, organization_member), change_type (string), changes (array | null), created_at (date-time), id (uuid), organization_id (uuid), record_type (string), resource_id (string), user_id (uuid)
GET /balance
javascriptconst balance = await client.balance.retrieve(); console.log(balance.data);
Returns: available_credit (string), balance (string), credit_limit (string), currency (string), pending (string), record_type (enum: balance)
Retrieve a detailed breakdown of monthly charges for phone numbers in a specified date range. The date range cannot exceed 31 days.
GET /charges_breakdown
javascriptconst chargesBreakdown = await client.chargesBreakdown.retrieve({ start_date: '2025-05-01' }); console.log(chargesBreakdown.data);
Returns: currency (string), end_date (date), results (arrayobject]), start_date (date), user_email (email), user_id (string)
Retrieve a summary of monthly charges for a specified date range. The date range cannot exceed 31 days.
GET /charges_summary
javascriptconst chargesSummary = await client.chargesSummary.retrieve({ end_date: '2025-06-01', start_date: '2025-05-01', }); console.log(chargesSummary.data);
Returns: currency (string), end_date (date), start_date (date), summary (object), total (object), user_email (email), user_id (string)
Search for any detail record across the Telnyx Platform
GET /detail_records
javascript// Automatically fetches more pages as needed. for await (const detailRecordListResponse of client.detailRecords.list()) { console.log(detailRecordListResponse); }
Returns: carrier (string), carrier_fee (string), cld (string), cli (string), completed_at (date-time), cost (string), country_code (string), created_at (date-time), currency (string), delivery_status (string), delivery_status_failover_url (string), delivery_status_webhook_url (string), direction (enum: inbound, outbound), errors (arraystring]), fteu (boolean), mcc (string), message_type (enum: SMS, MMS, RCS), mnc (string), on_net (boolean), parts (integer), profile_id (string), profile_name (string), rate (string), record_type (string), sent_at (date-time), source_country_code (string), status (enum: gw_timeout, delivered, dlr_unconfirmed, dlr_timeout, received, gw_reject, failed), tags (string), updated_at (date-time), user_id (string), uuid (string)
Retrieve a paginated list of invoices.
GET /invoices
javascript// Automatically fetches more pages as needed. for await (const invoiceListResponse of client.invoices.list()) { console.log(invoiceListResponse.file_id); }
Returns: file_id (uuid), invoice_id (uuid), paid (boolean), period_end (date), period_start (date), url (uri)
Retrieve a single invoice by its unique identifier.
GET /invoices/{id}
javascriptconst invoice = await client.invoices.retrieve('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e'); console.log(invoice.data);
Returns: download_url (uri), file_id (uuid), invoice_id (uuid), paid (boolean), period_end (date), period_start (date), url (uri)
Returns the payment auto recharge preferences.
GET /payment/auto_recharge_prefs
javascriptconst autoRechargePrefs = await client.payment.autoRechargePrefs.list(); console.log(autoRechargePrefs.data);
Returns: enabled (boolean), id (string), invoice_enabled (boolean), preference (enum: credit_paypal, ach), recharge_amount (string), record_type (string), threshold_amount (string)
Update payment auto recharge preferences.
PATCH /payment/auto_recharge_prefs
Optional: enabled (boolean), invoice_enabled (boolean), preference (enum: credit_paypal, ach), recharge_amount (string), threshold_amount (string)
javascriptconst autoRechargePref = await client.payment.autoRechargePrefs.update(); console.log(autoRechargePref.data);
Returns: enabled (boolean), id (string), invoice_enabled (boolean), preference (enum: credit_paypal, ach), recharge_amount (string), record_type (string), threshold_amount (string)
List all user tags.
GET /user_tags
javascriptconst userTags = await client.userTags.list(); console.log(userTags.data);
Returns: number_tags (arraystring]), outbound_profile_tags (arraystring])
POST /v2/payment/stored_payment_transactions — Required: amount
javascriptconst response = await client.payment.createStoredPaymentTransaction({ amount: '120.00' }); console.log(response.data);
Returns: amount_cents (integer), amount_currency (string), auto_recharge (boolean), created_at (date-time), id (string), processor_status (string), record_type (enum: transaction), transaction_processing_type (enum: stored_payment)
Lists webhook_deliveries for the authenticated user
GET /webhook_deliveries
javascript// Automatically fetches more pages as needed. for await (const webhookDeliveryListResponse of client.webhookDeliveries.list()) { console.log(webhookDeliveryListResponse.id); }
Returns: attempts (arrayobject]), finished_at (date-time), id (uuid), record_type (string), started_at (date-time), status (enum: delivered, failed), user_id (uuid), webhook (object)
Provides webhook_delivery debug data, such as timestamps, delivery status and attempts.
GET /webhook_deliveries/{id}
javascriptconst webhookDelivery = await client.webhookDeliveries.retrieve( 'C9C0797E-901D-4349-A33C-C2C8F31A92C2', ); console.log(webhookDelivery.data);
Returns: attempts (arrayobject]), finished_at (date-time), id (uuid), record_type (string), started_at (date-time), status (enum: delivered, failed), user_id (uuid), webhook (object)
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 18,066 | 10,641 | -41% | 1 | 1 | 0% | 3,659 | 4,756 | +30% | 0 | 0 | — |
case-02 | fail→pass | 14,822 | 7,681 | -48% | 1 | 1 | 0% | 3,050 | 4,237 | +39% | 0 | 0 | — |
case-03 | fail→pass | 14,752 | 8,324 | -44% | 1 | 1 | 0% | 3,045 | 4,225 | +39% | 0 | 0 | — |
case-04 | pass→pass | 7,578 | 3,564 | -53% | 1 | 1 | 0% | 1,473 | 3,139 | +113% | 0 | 0 | — |
case-05 | fail→pass | 11,115 | 4,296 | -61% | 1 | 1 | 0% | 2,046 | 3,369 | +65% | 0 | 0 | — |
case-06 | pass→pass | 11,177 | 5,572 | -50% | 1 | 1 | 0% | 1,942 | 3,401 | +75% | 0 | 0 | — |
case-07 | pass→pass | 9,928 | 3,928 | -60% | 1 | 1 | 0% | 1,828 | 3,178 | +74% | 0 | 0 | — |
case-08 | pass→pass | 5,214 | 2,273 | -56% | 1 | 1 | 0% | 1,053 | 2,936 | +179% | 0 | 0 | — |
case-09 | fail→pass | 7,841 | 3,478 | -56% | 1 | 1 | 0% | 1,521 | 3,188 | +110% | 0 | 0 | — |
case-10 | fail→pass | 10,230 | 4,262 | -58% | 1 | 1 | 0% | 2,066 | 3,276 | +59% | 0 | 0 | — |
case-11 | fail→pass | 12,200 | 6,161 | -50% | 1 | 1 | 0% | 2,097 | 3,725 | +78% | 0 | 0 | — |
case-12 | pass→pass | 6,318 | 5,918 | -6% | 1 | 1 | 0% | 1,283 | 3,862 | +201% | 0 | 0 | — |
case-13 | fail→pass | 12,892 | 6,220 | -52% | 1 | 1 | 0% | 2,496 | 3,776 | +51% | 0 | 0 | — |
case-14 | pass→pass | 12,378 | 4,514 | -64% | 1 | 1 | 0% | 2,378 | 3,404 | +43% | 0 | 0 | — |
case-15 | fail→pass | 5,476 | 2,583 | -53% | 1 | 1 | 0% | 992 | 2,899 | +192% | 0 | 0 | — |
case-16 | fail→pass | 12,399 | 4,801 | -61% | 1 | 1 | 0% | 2,308 | 3,390 | +47% | 0 | 0 | — |
case-17 | pass→pass | 12,696 | 5,630 | -56% | 1 | 1 | 0% | 2,467 | 3,553 | +44% | 0 | 0 | — |
case-18 | fail→pass | 8,109 | 3,531 | -56% | 1 | 1 | 0% | 1,481 | 3,129 | +111% | 0 | 0 | — |
case-19 | fail→fail | 9,704 | 9,416 | -3% | 1 | 1 | 0% | 1,849 | 4,337 | +135% | 0 | 0 | — |
case-20 | fail→fail | 19,622 | 10,662 | -46% | 1 | 1 | 0% | 3,958 | 4,597 | +16% | 0 | 0 | — |
case-21 | fail→fail | 9,867 | 6,430 | -35% | 1 | 1 | 0% | 1,950 | 3,764 | +93% | 0 | 0 | — |
case-22 | fail→fail | 7,046 | 6,541 | -7% | 1 | 1 | 0% | 1,324 | 3,729 | +182% | 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 +50 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.