telnyx-email-inbound-curl
SolidManage email inboxes, list and search inbound messages, threads, sender filters, and reply to or forward messages. Use for building email agents that read and respond to incoming email.
AI & Automation 211 stars
22 forks Updated today MIT
Install
Quality Score: 87/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
# Telnyx Email Inbound - curl
## Installation
```text
# curl is pre-installed on macOS, Linux, and Windows 10+
```
## Setup
```bash
export TELNYX_API_KEY="YOUR_API_KEY_HERE"
export TELNYX_API_BASE="https://api.telnyx.com/v2"
```
All examples below use `$TELNYX_API_KEY` for authentication. Resource IDs are UUIDs;
store the IDs returned by create and list calls rather than parsing them from email
addresses.
## Error Handling
All API calls can fail with network errors, authentication errors (401), validation
errors (422), temporary service errors (503), or rate limits (429). Capture the HTTP
status separately from the JSON response in production:
```bash
response_file="$(mktemp)"
status="$({ curl -sS \
-o "$response_file" \
-w '%{http_code}' \
-H "Authorization: Bearer $TELNYX_API_KEY" \
"$TELNYX_API_BASE/email_inboxes"; } || printf '000')"
if [[ "$status" != "200" ]]; then
printf 'Telnyx request failed (HTTP %s)\n' "$status" >&2
jq . "$response_file" >&2 2>/dev/null || true
fi
rm -f "$response_file"
```
Common status codes:
| Status | Meaning | Action |
|--------|---------|--------|
| `400` | Malformed request or send-time prerequisite failure | Fix the request; do not retry unchanged. |
| `401` | Invalid or missing API key | Replace the key and retry. |
| `403` | The account or inbox domain cannot send | Correct permissions or sending-domain configuration. |
| `404` | Resource is missing, d...
Details
- Author
- team-telnyx
- Repository
- team-telnyx/ai
- Created
- 6 months ago
- Last Updated
- today
- Language
- TypeScript
- License
- MIT
Integrates with
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
telnyx-email-curl
Send transactional email, batch sends, scheduled delivery, templates, email validation, and track delivery events. Use for notifications, alerts, and automated email workflows.
211 Updated today
team-telnyx AI & Automation Solid
telnyx-email-domains-curl
Manage email sending domains, verify DNS records (SPF, DKIM, DMARC, MX), check domain health, and configure domain-level webhooks for delivery events.
211 Updated today
team-telnyx AI & Automation Solid
telnyx-messaging-curl
Send and receive SMS/MMS, handle opt-outs and delivery webhooks. Use for notifications, 2FA, or messaging apps.
211 Updated today
team-telnyx