Skillquality 0.53

telnyx-messaging-curl

>-

Price
free
Protocol
skill
Verified
no

What it does

<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->

Telnyx Messaging - 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 \
  -X POST \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
      "to": "+13125550001",
      "from": "+18005550101",
      "text": "Hello from Telnyx!"
  }' \
  "https://api.telnyx.com/v2/messages"

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.

Operational Caveats

  • The sending number must already be assigned to the correct messaging profile before you send traffic from it.
  • US A2P long-code traffic must complete 10DLC registration before production sending or carriers will block or heavily filter messages.
  • Delivery webhooks are asynchronous. Treat the send response as acceptance of the request, not final carrier delivery.

Reference Use Rules

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

Core Tasks

Send an SMS

Primary outbound messaging flow. Agents need exact request fields and delivery-related response fields.

POST /messages

ParameterTypeRequiredDescription
tostring (E.164)YesReceiving address (+E.164 formatted phone number or short co...
fromstring (E.164)YesSending address (+E.164 formatted phone number, alphanumeric...
textstringYesMessage body (i.e., content) as a non-empty string.
messaging_profile_idstring (UUID)NoUnique identifier for a messaging profile.
media_urlsarray[string]NoA list of media URLs.
webhook_urlstring (URL)NoThe URL where webhooks related to this message will be sent.
...+7 optional params in references/api-details.md
curl \
  -X POST \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
      "to": "+13125550001",
      "from": "+18005550101",
      "text": "Hello from Telnyx!"
  }' \
  "https://api.telnyx.com/v2/messages"

Primary response fields:

  • .data.id
  • .data.to
  • .data.from
  • .data.text
  • .data.sent_at
  • .data.errors

Send an SMS with an alphanumeric sender ID

Common sender variant that requires different request shape.

POST /messages/alphanumeric_sender_id

ParameterTypeRequiredDescription
fromstring (E.164)YesA valid alphanumeric sender ID on the user's account.
tostring (E.164)YesReceiving address (+E.164 formatted phone number or short co...
textstringYesThe message body.
messaging_profile_idstring (UUID)YesThe messaging profile ID to use.
webhook_urlstring (URL)NoCallback URL for delivery status updates.
webhook_failover_urlstring (URL)NoFailover callback URL for delivery status updates.
use_profile_webhooksbooleanNoIf true, use the messaging profile's webhook settings.
curl \
  -X POST \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "from": "MyCompany",
  "to": "+13125550001",
  "text": "Hello from Telnyx!",
  "messaging_profile_id": "550e8400-e29b-41d4-a716-446655440000"
}' \
  "https://api.telnyx.com/v2/messages/alphanumeric_sender_id"

Primary response fields:

  • .data.id
  • .data.to
  • .data.from
  • .data.text
  • .data.sent_at
  • .data.errors

Webhook Verification

Telnyx signs webhooks with Ed25519. Each request includes telnyx-signature-ed25519 and telnyx-timestamp headers. Always verify signatures in production:

# Telnyx signs webhooks with Ed25519 (asymmetric — NOT HMAC/Standard Webhooks).
# Headers sent with each webhook:
#   telnyx-signature-ed25519: base64-encoded Ed25519 signature
#   telnyx-timestamp: Unix timestamp (reject if >5 minutes old for replay protection)
#
# Get your public key from: Telnyx Portal > Account Settings > Keys & Credentials
# Use the Telnyx SDK in your language for verification (client.webhooks.unwrap).
# Your endpoint MUST return 2xx within 2 seconds or Telnyx will retry (up to 3 attempts).
# Configure a failover URL in Telnyx Portal for additional reliability.

Webhooks

These webhook payload fields are inline because they are part of the primary integration path.

Delivery Update

FieldTypeDescription
data.event_typeenum: message.sent, message.finalizedThe type of event being delivered.
data.payload.iduuidIdentifies the type of resource.
data.payload.toarray[object]
data.payload.textstringMessage body (i.e., content) as a non-empty string.
data.payload.sent_atdate-timeISO 8601 formatted date indicating when the message was sent.
data.payload.completed_atdate-timeISO 8601 formatted date indicating when the message was finalized.
data.payload.costobject | null
data.payload.errorsarray[object]These errors may point at addressees when referring to unsuccessful/unconfirm...

Inbound Message

FieldTypeDescription
data.event_typeenum: message.receivedThe type of event being delivered.
data.payload.iduuidIdentifies the type of resource.
data.payload.directionenum: inboundThe direction of the message.
data.payload.toarray[object]
data.payload.textstringMessage body (i.e., content) as a non-empty string.
data.payload.typeenum: SMS, MMSThe type of message.
data.payload.mediaarray[object]
data.record_typeenum: eventIdentifies the type of the resource.

If you need webhook fields that are not listed inline here, read the webhook payload reference before writing the handler.


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.

Send a group MMS message

Send one MMS payload to multiple recipients.

POST /messages/group_mms

ParameterTypeRequiredDescription
fromstring (E.164)YesPhone number, in +E.164 format, used to send the message.
toarray[object]YesA list of destinations.
media_urlsarray[string]NoA list of media URLs.
webhook_urlstring (URL)NoThe URL where webhooks related to this message will be sent.
webhook_failover_urlstring (URL)NoThe failover URL where webhooks related to this message will...
...+3 optional params in references/api-details.md
curl \
  -X POST \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
      "from": "+18005550101",
      "to": [
          "+13125550001"
      ],
      "text": "Hello from Telnyx!"
  }' \
  "https://api.telnyx.com/v2/messages/group_mms"

Primary response fields:

  • .data.id
  • .data.to
  • .data.from
  • .data.type
  • .data.direction
  • .data.text

Send a long code message

Force a long-code sending path instead of the generic send endpoint.

POST /messages/long_code

ParameterTypeRequiredDescription
fromstring (E.164)YesPhone number, in +E.164 format, used to send the message.
tostring (E.164)YesReceiving address (+E.164 formatted phone number or short co...
media_urlsarray[string]NoA list of media URLs.
webhook_urlstring (URL)NoThe URL where webhooks related to this message will be sent.
webhook_failover_urlstring (URL)NoThe failover URL where webhooks related to this message will...
...+6 optional params in references/api-details.md
curl \
  -X POST \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
      "from": "+18005550101",
      "to": "+13125550001",
      "text": "Hello from Telnyx!"
  }' \
  "https://api.telnyx.com/v2/messages/long_code"

Primary response fields:

  • .data.id
  • .data.to
  • .data.from
  • .data.type
  • .data.direction
  • .data.text

Send a message using number pool

Let a messaging profile or number pool choose the sender for you.

POST /messages/number_pool

ParameterTypeRequiredDescription
messaging_profile_idstring (UUID)YesUnique identifier for a messaging profile.
tostring (E.164)YesReceiving address (+E.164 formatted phone number or short co...
media_urlsarray[string]NoA list of media URLs.
webhook_urlstring (URL)NoThe URL where webhooks related to this message will be sent.
webhook_failover_urlstring (URL)NoThe failover URL where webhooks related to this message will...
...+6 optional params in references/api-details.md
curl \
  -X POST \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
      "messaging_profile_id": "550e8400-e29b-41d4-a716-446655440000",
      "to": "+13125550001",
      "text": "Hello from Telnyx!"
  }' \
  "https://api.telnyx.com/v2/messages/number_pool"

Primary response fields:

  • .data.id
  • .data.to
  • .data.from
  • .data.type
  • .data.direction
  • .data.text

Send a short code message

Force a short-code sending path when the sender must be a short code.

POST /messages/short_code

ParameterTypeRequiredDescription
fromstring (E.164)YesPhone number, in +E.164 format, used to send the message.
tostring (E.164)YesReceiving address (+E.164 formatted phone number or short co...
media_urlsarray[string]NoA list of media URLs.
webhook_urlstring (URL)NoThe URL where webhooks related to this message will be sent.
webhook_failover_urlstring (URL)NoThe failover URL where webhooks related to this message will...
...+6 optional params in references/api-details.md
curl \
  -X POST \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
      "from": "12345",
      "to": "+13125550001",
      "text": "Hello from Telnyx!"
  }' \
  "https://api.telnyx.com/v2/messages/short_code"

Primary response fields:

  • .data.id
  • .data.to
  • .data.from
  • .data.type
  • .data.direction
  • .data.text

Schedule a message

Queue a message for future delivery instead of sending immediately.

POST /messages/schedule

ParameterTypeRequiredDescription
tostring (E.164)YesReceiving address (+E.164 formatted phone number or short co...
messaging_profile_idstring (UUID)NoUnique identifier for a messaging profile.
media_urlsarray[string]NoA list of media URLs.
webhook_urlstring (URL)NoThe URL where webhooks related to this message will be sent.
...+8 optional params in references/api-details.md
curl \
  -X POST \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
      "to": "+13125550001",
      "from": "+18005550101",
      "text": "Appointment reminder",
      "send_at": "2025-07-01T15:00:00Z"
  }' \
  "https://api.telnyx.com/v2/messages/schedule"

Primary response fields:

  • .data.id
  • .data.to
  • .data.from
  • .data.type
  • .data.direction
  • .data.text

Send a WhatsApp message

Send WhatsApp traffic instead of SMS/MMS.

POST /messages/whatsapp

ParameterTypeRequiredDescription
fromstring (E.164)YesPhone number in +E.164 format associated with Whatsapp accou...
tostring (E.164)YesPhone number in +E.164 format
whatsapp_messageobjectYes
typeenum (WHATSAPP)NoMessage type - must be set to "WHATSAPP"
webhook_urlstring (URL)NoThe URL where webhooks related to this message will be sent.
curl \
  -X POST \
  -H "Authorization: Bearer $TELNYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "from": "+13125551234",
  "to": "+13125551234",
  "whatsapp_message": {}
}' \
  "https://api.telnyx.com/v2/messages/whatsapp"

Primary response fields:

  • .data.id
  • .data.to
  • .data.from
  • .data.type
  • .data.direction
  • .data.body

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
Retrieve a messageHTTP onlyGET /messages/{id}Fetch the current state before updating, deleting, or making control-flow decisions.id
Cancel a scheduled messageHTTP onlyDELETE /messages/{id}Remove, detach, or clean up an existing resource.id
List alphanumeric sender IDsHTTP onlyGET /alphanumeric_sender_idsInspect available resources or choose an existing resource before mutating it.None
Create an alphanumeric sender IDHTTP onlyPOST /alphanumeric_sender_idsCreate or provision an additional resource when the core tasks do not cover this flow.alphanumeric_sender_id, messaging_profile_id
Retrieve an alphanumeric sender IDHTTP onlyGET /alphanumeric_sender_ids/{id}Fetch the current state before updating, deleting, or making control-flow decisions.id
Delete an alphanumeric sender IDHTTP onlyDELETE /alphanumeric_sender_ids/{id}Remove, detach, or clean up an existing resource.id
Retrieve group MMS messagesHTTP onlyGET /messages/group/{message_id}Fetch the current state before updating, deleting, or making control-flow decisions.message_id
List messaging hosted numbersHTTP onlyGET /messaging_hosted_numbersInspect available resources or choose an existing resource before mutating it.None
Retrieve a messaging hosted numberHTTP onlyGET /messaging_hosted_numbers/{id}Fetch the current state before updating, deleting, or making control-flow decisions.id
Update a messaging hosted numberHTTP onlyPATCH /messaging_hosted_numbers/{id}Modify an existing resource without recreating it.id
List opt-outsHTTP onlyGET /messaging_optoutsInspect available resources or choose an existing resource before mutating it.None
List high-level messaging profile metricsHTTP onlyGET /messaging_profile_metricsInspect available resources or choose an existing resource before mutating it.None
Regenerate messaging profile secretHTTP onlyPOST /messaging_profiles/{id}/actions/regenerate_secretTrigger a follow-up action in an existing workflow rather than creating a new top-level resource.id
List alphanumeric sender IDs for a messaging profileHTTP onlyGET /messaging_profiles/{id}/alphanumeric_sender_idsFetch the current state before updating, deleting, or making control-flow decisions.id
Get detailed messaging profile metricsHTTP onlyGET /messaging_profiles/{id}/metricsFetch the current state before updating, deleting, or making control-flow decisions.id
List Auto-Response SettingsHTTP onlyGET /messaging_profiles/{profile_id}/autoresp_configsFetch the current state before updating, deleting, or making control-flow decisions.profile_id
Create auto-response settingHTTP onlyPOST /messaging_profiles/{profile_id}/autoresp_configsCreate or provision an additional resource when the core tasks do not cover this flow.op, keywords, country_code, profile_id
Get Auto-Response SettingHTTP onlyGET /messaging_profiles/{profile_id}/autoresp_configs/{autoresp_cfg_id}Fetch the current state before updating, deleting, or making control-flow decisions.profile_id, autoresp_cfg_id
Update Auto-Response SettingHTTP onlyPUT /messaging_profiles/{profile_id}/autoresp_configs/{autoresp_cfg_id}Modify an existing resource without recreating it.op, keywords, country_code, profile_id, +1 more
Delete Auto-Response SettingHTTP onlyDELETE /messaging_profiles/{profile_id}/autoresp_configs/{autoresp_cfg_id}Remove, detach, or clean up an existing resource.profile_id, autoresp_cfg_id

Other Webhook Events

Eventdata.event_typeDescription
replacedLinkClickmessage.link_clickReplaced Link Click

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

Capabilities

skillsource-team-telnyxskill-telnyx-messaging-curltopic-agent-skillstopic-ai-coding-agenttopic-claude-codetopic-cpaastopic-cursortopic-iottopic-llmtopic-sdktopic-siptopic-smstopic-speech-to-texttopic-telephony

Install

Quality

0.53/ 1.00

deterministic score 0.53 from registry signals: · indexed on github topic:agent-skills · 167 github stars · SKILL.md body (19,004 chars)

Provenance

Indexed fromgithub
Enriched2026-04-22 06:54:38Z · deterministic:skill-github:v1 · v1
First seen2026-04-18
Last seen2026-04-22

Agent access