{"id":"68ad24ff-4853-42c3-b6fd-756a8d75c903","shortId":"T4sQPZ","kind":"skill","title":"telnyx-fax-python","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Fax - Python\n\n## Installation\n\n```bash\npip install telnyx\n```\n\n## Setup\n\n```python\nimport os\nfrom telnyx import Telnyx\n\nclient = Telnyx(\n    api_key=os.environ.get(\"TELNYX_API_KEY\"),  # This is the default and can be omitted\n)\n```\n\nAll examples below assume `client` is already initialized as shown above.\n\n## Error Handling\n\nAll API calls can fail with network errors, rate limits (429), validation errors (422),\nor authentication errors (401). Always handle errors in production code:\n\n```python\nimport telnyx\n\ntry:\n    result = client.messages.send(to=\"+13125550001\", from_=\"+13125550002\", text=\"Hello\")\nexcept telnyx.APIConnectionError:\n    print(\"Network error — check connectivity and retry\")\nexcept telnyx.RateLimitError:\n    # 429: rate limited — wait and retry with exponential backoff\n    import time\n    time.sleep(1)  # Check Retry-After header for actual delay\nexcept telnyx.APIStatusError as e:\n    print(f\"API error {e.status_code}: {e.message}\")\n    if e.status_code == 422:\n        print(\"Validation error — check required fields and formats\")\n```\n\nCommon error codes: `401` invalid API key, `403` insufficient permissions,\n`404` resource not found, `422` validation error (check field formats),\n`429` rate limited (retry with exponential backoff).\n\n## Important Notes\n\n- **Phone numbers** must be in E.164 format (e.g., `+13125550001`). Include the `+` prefix and country code. No spaces, dashes, or parentheses.\n- **Pagination:** List methods return an auto-paginating iterator. Use `for item in page_result:` to iterate through all pages automatically.\n\n## List all Fax Applications\n\nThis endpoint returns a list of your Fax Applications inside the 'data' attribute of the response. You can adjust which applications are listed by using filters. Fax Applications are used to configure how you send and receive faxes using the Programmable Fax API with Telnyx.\n\n`GET /fax_applications`\n\n```python\npage = client.fax_applications.list()\npage = page.data[0]\nprint(page.id)\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `application_name` (string), `created_at` (string), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `tags` (array[string]), `updated_at` (string), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Creates a Fax Application\n\nCreates a new Fax Application based on the parameters sent in the request. The application name and webhook URL are required. Once created, you can assign phone numbers to your application using the `/phone_numbers` endpoint.\n\n`POST /fax_applications` — Required: `application_name`, `webhook_event_url`\n\nOptional: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `inbound` (object), `outbound` (object), `tags` (array[string]), `webhook_event_failover_url` (uri), `webhook_timeout_secs` (integer | null)\n\n```python\nfax_application = client.fax_applications.create(\n    application_name=\"fax-router\",\n    webhook_event_url=\"https://example.com\",\n)\nprint(fax_application.data)\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `application_name` (string), `created_at` (string), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `tags` (array[string]), `updated_at` (string), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Retrieve a Fax Application\n\nReturn the details of an existing Fax Application inside the 'data' attribute of the response.\n\n`GET /fax_applications/{id}`\n\n```python\nfax_application = client.fax_applications.retrieve(\n    \"1293384261075731499\",\n)\nprint(fax_application.data)\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `application_name` (string), `created_at` (string), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `tags` (array[string]), `updated_at` (string), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Update a Fax Application\n\nUpdates settings of an existing Fax Application based on the parameters of the request.\n\n`PATCH /fax_applications/{id}` — Required: `application_name`, `webhook_event_url`\n\nOptional: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `fax_email_recipient` (string | null), `inbound` (object), `outbound` (object), `tags` (array[string]), `webhook_event_failover_url` (uri), `webhook_timeout_secs` (integer | null)\n\n```python\nfax_application = client.fax_applications.update(\n    id=\"1293384261075731499\",\n    application_name=\"fax-router\",\n    webhook_event_url=\"https://example.com\",\n)\nprint(fax_application.data)\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `application_name` (string), `created_at` (string), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `tags` (array[string]), `updated_at` (string), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Deletes a Fax Application\n\nPermanently deletes a Fax Application. Deletion may be prevented if the application is in use by phone numbers.\n\n`DELETE /fax_applications/{id}`\n\n```python\nfax_application = client.fax_applications.delete(\n    \"1293384261075731499\",\n)\nprint(fax_application.data)\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `application_name` (string), `created_at` (string), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `tags` (array[string]), `updated_at` (string), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## View a list of faxes\n\n`GET /faxes`\n\n```python\npage = client.faxes.list()\npage = page.data[0]\nprint(page.id)\n```\n\nReturns: `client_state` (string), `connection_id` (string), `created_at` (date-time), `direction` (enum: inbound, outbound), `from` (string), `from_display_name` (string), `id` (uuid), `media_name` (string), `media_url` (string), `preview_url` (string), `quality` (enum: normal, high, very_high, ultra_light, ultra_dark), `record_type` (enum: fax), `status` (enum: queued, media.processed, originated, sending, delivered, failed, initiated, receiving, media.processing, received), `store_media` (boolean), `stored_media_url` (string), `to` (string), `updated_at` (date-time), `webhook_failover_url` (string), `webhook_url` (string)\n\n## Send a fax\n\nSend a fax. Files have size limits and page count limit validations. If a file is bigger than 50MB or has more than 350 pages it will fail with `file_size_limit_exceeded` and `page_count_limit_exceeded` respectively.\n\n`POST /faxes` — Required: `connection_id`, `from`, `to`\n\nOptional: `black_threshold` (integer), `client_state` (string), `from_display_name` (string), `media_name` (string), `media_url` (string), `monochrome` (boolean), `preview_format` (enum: pdf, tiff), `quality` (enum: normal, high, very_high, ultra_light, ultra_dark), `store_media` (boolean), `store_preview` (boolean), `t38_enabled` (boolean), `webhook_url` (string)\n\n```python\nfax = client.faxes.create(\n    connection_id=\"234423\",\n    from_=\"+13125790015\",\n    to=\"+13127367276\",\n    media_url=\"https://example.com/document.pdf\",\n)\nprint(fax.data)\n```\n\nReturns: `client_state` (string), `connection_id` (string), `created_at` (date-time), `direction` (enum: inbound, outbound), `from` (string), `from_display_name` (string), `id` (uuid), `media_name` (string), `media_url` (string), `preview_url` (string), `quality` (enum: normal, high, very_high, ultra_light, ultra_dark), `record_type` (enum: fax), `status` (enum: queued, media.processed, originated, sending, delivered, failed, initiated, receiving, media.processing, received), `store_media` (boolean), `stored_media_url` (string), `to` (string), `updated_at` (date-time), `webhook_failover_url` (string), `webhook_url` (string)\n\n## View a fax\n\n`GET /faxes/{id}`\n\n```python\nfax = client.faxes.retrieve(\n    \"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e\",\n)\nprint(fax.data)\n```\n\nReturns: `client_state` (string), `connection_id` (string), `created_at` (date-time), `direction` (enum: inbound, outbound), `from` (string), `from_display_name` (string), `id` (uuid), `media_name` (string), `media_url` (string), `preview_url` (string), `quality` (enum: normal, high, very_high, ultra_light, ultra_dark), `record_type` (enum: fax), `status` (enum: queued, media.processed, originated, sending, delivered, failed, initiated, receiving, media.processing, received), `store_media` (boolean), `stored_media_url` (string), `to` (string), `updated_at` (date-time), `webhook_failover_url` (string), `webhook_url` (string)\n\n## Delete a fax\n\n`DELETE /faxes/{id}`\n\n```python\nclient.faxes.delete(\n    \"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e\",\n)\n```\n\n## Cancel a fax\n\nCancel the outbound fax that is in one of the following states: `queued`, `media.processed`, `originated` or `sending`\n\n`POST /faxes/{id}/actions/cancel`\n\n```python\nresponse = client.faxes.actions.cancel(\n    \"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e\",\n)\nprint(response.data)\n```\n\nReturns: `result` (string)\n\n## Refresh a fax\n\nRefreshes the inbound fax's media_url when it has expired\n\n`POST /faxes/{id}/actions/refresh`\n\n```python\nresponse = client.faxes.actions.refresh(\n    \"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e\",\n)\nprint(response.data)\n```\n\nReturns: `result` (string)\n\n---\n\n## Webhooks\n\n### Webhook Verification\n\nTelnyx signs webhooks with Ed25519. Each request includes `telnyx-signature-ed25519`\nand `telnyx-timestamp` headers. Always verify signatures in production:\n\n```python\n# In your webhook handler (e.g., Flask — use raw body, not parsed JSON):\n@app.route(\"/webhooks\", methods=[\"POST\"])\ndef handle_webhook():\n    payload = request.get_data(as_text=True)  # raw body as string\n    headers = dict(request.headers)\n    try:\n        event = client.webhooks.unwrap(payload, headers=headers)\n    except Exception as e:\n        print(f\"Webhook verification failed: {e}\")\n        return \"Invalid signature\", 400\n    # Signature valid — event is the parsed webhook payload\n    print(f\"Received event: {event.data.event_type}\")\n    return \"OK\", 200\n```\n\nThe following webhook events are sent to your configured webhook URL.\nAll webhooks include `telnyx-timestamp` and `telnyx-signature-ed25519` headers for Ed25519 signature verification. Use `client.webhooks.unwrap()` to verify.\n\n| Event | Description |\n|-------|-------------|\n| `fax.delivered` | Fax Delivered |\n| `fax.failed` | Fax Failed |\n| `fax.media.processed` | Fax Media Processed |\n| `fax.queued` | Fax Queued |\n| `fax.sending.started` | Fax Sending Started |\n\n### Webhook payload fields\n\n**`fax.delivered`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n| `data.event_type` | enum: fax.delivered | The type of event being delivered. |\n| `data.payload.call_duration_secs` | integer | The duration of the call in seconds. |\n| `data.payload.connection_id` | string | The ID of the connection used to send the fax. |\n| `data.payload.direction` | enum: inbound, outbound | The direction of the fax. |\n| `data.payload.fax_id` | uuid | Identifies the fax. |\n| `data.payload.original_media_url` | string | The original URL to the PDF used for the fax's media. |\n| `data.payload.media_name` | string | The media_name used for the fax's media. |\n| `data.payload.to` | string | The phone number, in E.164 format, the fax will be sent to or SIP URI |\n| `data.payload.from` | string | The phone number, in E.164 format, the fax will be sent from. |\n| `data.payload.user_id` | uuid | Identifier of the user to whom the fax belongs |\n| `data.payload.page_count` | integer | Number of transferred pages |\n| `data.payload.status` | enum: delivered | The status of the fax. |\n| `data.payload.client_state` | string | State received from a command. |\n| `meta.attempt` | integer | The delivery attempt number. |\n| `meta.delivered_to` | uri | The URL the webhook was delivered to. |\n\n**`fax.failed`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n| `data.event_type` | enum: fax.failed | The type of event being delivered. |\n| `data.payload.connection_id` | string | The ID of the connection used to send the fax. |\n| `data.payload.direction` | enum: inbound, outbound | The direction of the fax. |\n| `data.payload.fax_id` | uuid | Identifies the fax. |\n| `data.payload.original_media_url` | string | The original URL to the PDF used for the fax's media. |\n| `data.payload.media_name` | string | The media_name used for the fax's media. |\n| `data.payload.to` | string | The phone number, in E.164 format, the fax will be sent to or SIP URI |\n| `data.payload.from` | string | The phone number, in E.164 format, the fax will be sent from. |\n| `data.payload.user_id` | uuid | Identifier of the user to whom the fax belongs |\n| `data.payload.failure_reason` | enum: rejected | Cause of the sending failure |\n| `data.payload.status` | enum: failed | The status of the fax. |\n| `data.payload.client_state` | string | State received from a command. |\n| `meta.attempt` | integer | The delivery attempt number. |\n| `meta.delivered_to` | uri | The URL the webhook was delivered to. |\n\n**`fax.media.processed`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n| `data.event_type` | enum: fax.media.processed | The type of event being delivered. |\n| `data.payload.connection_id` | string | The ID of the connection used to send the fax. |\n| `data.payload.direction` | enum: inbound, outbound | The direction of the fax. |\n| `data.payload.fax_id` | uuid | Identifies the fax. |\n| `data.payload.original_media_url` | string | The original URL to the PDF used for the fax's media. |\n| `data.payload.media_name` | string | The media_name used for the fax's media. |\n| `data.payload.to` | string | The phone number, in E.164 format, the fax will be sent to or SIP URI |\n| `data.payload.from` | string | The phone number, in E.164 format, the fax will be sent from. |\n| `data.payload.user_id` | uuid | Identifier of the user to whom the fax belongs |\n| `data.payload.status` | enum: media.processed | The status of the fax. |\n| `data.payload.client_state` | string | State received from a command. |\n| `meta.attempt` | integer | The delivery attempt number. |\n| `meta.delivered_to` | uri | The URL the webhook was delivered to. |\n\n**`fax.queued`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n| `data.event_type` | enum: fax.queued | The type of event being delivered. |\n| `data.payload.connection_id` | string | The ID of the connection used to send the fax. |\n| `data.payload.direction` | enum: inbound, outbound | The direction of the fax. |\n| `data.payload.fax_id` | uuid | Identifies the fax. |\n| `data.payload.original_media_url` | string | The original URL to the PDF used for the fax's media. |\n| `data.payload.media_name` | string | The media_name used for the fax's media. |\n| `data.payload.to` | string | The phone number, in E.164 format, the fax will be sent to or SIP URI |\n| `data.payload.from` | string | The phone number, in E.164 format, the fax will be sent from. |\n| `data.payload.user_id` | uuid | Identifier of the user to whom the fax belongs |\n| `data.payload.status` | enum: queued | The status of the fax. |\n| `data.payload.client_state` | string | State received from a command. |\n| `meta.attempt` | integer | The delivery attempt number. |\n| `meta.delivered_to` | uri | The URL the webhook was delivered to. |\n\n**`fax.sending.started`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n| `data.event_type` | enum: fax.sending.started | The type of event being delivered. |\n| `data.payload.connection_id` | string | The ID of the connection used to send the fax. |\n| `data.payload.direction` | enum: inbound, outbound | The direction of the fax. |\n| `data.payload.fax_id` | uuid | Identifies the fax. |\n| `data.payload.original_media_url` | string | The original URL to the PDF used for the fax's media. |\n| `data.payload.media_name` | string | The media_name used for the fax's media. |\n| `data.payload.to` | string | The phone number, in E.164 format, the fax will be sent to or SIP URI |\n| `data.payload.from` | string | The phone number, in E.164 format, the fax will be sent from. |\n| `data.payload.user_id` | uuid | Identifier of the user to whom the fax belongs |\n| `data.payload.status` | enum: sending | The status of the fax. |\n| `data.payload.client_state` | string | State received from a command. |\n| `meta.attempt` | integer | The delivery attempt number. |\n| `meta.delivered_to` | uri | The URL the webhook was delivered to. |","tags":["telnyx","fax","python","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk"],"capabilities":["skill","source-team-telnyx","skill-telnyx-fax-python","topic-agent-skills","topic-ai-coding-agent","topic-claude-code","topic-cpaas","topic-cursor","topic-iot","topic-llm","topic-sdk","topic-sip","topic-sms","topic-speech-to-text","topic-telephony"],"categories":["ai"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/team-telnyx/ai/telnyx-fax-python","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add team-telnyx/ai","source_repo":"https://github.com/team-telnyx/ai","install_from":"skills.sh"}},"qualityScore":"0.533","qualityRationale":"deterministic score 0.53 from registry signals: · indexed on github topic:agent-skills · 167 github stars · SKILL.md body (18,822 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T12:54:45.432Z","embedding":null,"createdAt":"2026-04-18T22:06:27.740Z","updatedAt":"2026-04-22T12:54:45.432Z","lastSeenAt":"2026-04-22T12:54:45.432Z","tsv":"'+13125550001':81,178 '+13125550002':83 '+13125790015':1030 '+13127367276':1032 '/actions/cancel':1254 '/actions/refresh':1286 '/document.pdf':1037 '/fax_applications':261,371,517,606,763 '/faxes':839,971,1124,1221,1252,1284 '/phone_numbers':368 '/webhooks':1340 '0':267,845 '1':109 '1293384261075731499':523,667,769 '182bd5e5':1130,1226,1259,1291 '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e':1129,1225,1258,1290 '200':1395 '234423':1028 '350':954 '400':1378 '401':67,144 '403':148 '404':151 '422':63,132,155 '429':60,97,161 '4fe4':1132,1228,1261,1293 '50mb':949 '6e1a':1131,1227,1260,1292 '8601':1476,1669,1853,2028,2203 'a799':1133,1229,1262,1294 'aa6d9a6ab26e':1134,1230,1263,1295 'activ':271,379,437,527,615,680,773 'actual':116 'adjust':233 'alreadi':43 'alway':68,1321 'amsterdam':286,394,452,542,630,695,788 'anchorsit':273,381,439,529,617,682,775 'api':23,27,51,124,146,257 'app.route':1339 'applic':214,223,235,242,296,334,339,349,365,373,423,425,462,500,508,521,552,590,597,609,664,668,705,743,748,755,767,798 'array':312,409,478,568,650,721,814 'ashburn':279,387,445,535,623,688,781 'assign':360 'assum':40 'attempt':1630,1814,1989,2164,2339 'attribut':227,512 'australia':285,393,451,541,629,694,787 'authent':65 'auto':196 'auto-pagin':195 'automat':210 'backoff':105,167 'base':340,598 'bash':9 'belong':1602,1784,1968,2143,2318 'bigger':947 'black':978 'bodi':1335,1353 'boolean':272,380,438,528,616,681,774,909,995,1013,1016,1019,1101,1198 'ca':283,391,449,539,627,692,785 'call':52,1501 'canada':291,293,399,401,457,459,547,549,635,637,700,702,793,795 'cancel':1231,1234 'caus':1789 'check':91,110,136,158 'chicago':277,385,443,533,621,686,779 'client':21,41,849,981,1041,1138 'client.fax_applications.create':424 'client.fax_applications.delete':768 'client.fax_applications.list':264 'client.fax_applications.retrieve':522 'client.fax_applications.update':665 'client.faxes.actions.cancel':1257 'client.faxes.actions.refresh':1289 'client.faxes.create':1025 'client.faxes.delete':1224 'client.faxes.list':842 'client.faxes.retrieve':1128 'client.messages.send':79 'client.webhooks.unwrap':1361,1424 'code':73,127,131,143,184 'command':1625,1809,1984,2159,2334 'common':141 'configur':246,1404 'connect':92,852,973,1026,1044,1141,1511,1693,1877,2052,2227 'count':940,966,1604 'countri':183 'creat':299,331,335,357,465,555,708,801,855,1047,1144 'dark':890,1010,1082,1179 'dash':187 'data':226,511,1348 'data.event':1483,1676,1860,2035,2210 'data.id':1463,1656,1840,2015,2190 'data.occurred':1470,1663,1847,2022,2197 'data.payload.call':1493 'data.payload.client':1618,1802,1977,2152,2327 'data.payload.connection':1504,1686,1870,2045,2220 'data.payload.direction':1517,1699,1883,2058,2233 'data.payload.failure':1785 'data.payload.fax':1526,1708,1892,2067,2242 'data.payload.from':1577,1759,1943,2118,2293 'data.payload.media':1548,1730,1914,2089,2264 'data.payload.original':1532,1714,1898,2073,2248 'data.payload.page':1603 'data.payload.status':1610,1794,1969,2144,2319 'data.payload.to':1560,1742,1926,2101,2276 'data.payload.user':1591,1773,1957,2132,2307 'data.record':1453,1646,1830,2005,2180 'date':858,919,1050,1111,1147,1208,1473,1666,1850,2025,2200 'date-tim':857,918,1049,1110,1146,1207,1472,1665,1849,2024,2199 'datetim':1477,1670,1854,2029,2204 'def':1343 'default':32 'delay':117 'delet':740,745,749,762,1217,1220 'deliv':901,1093,1190,1431,1492,1612,1640,1685,1824,1869,1999,2044,2174,2219,2349 'deliveri':1629,1813,1988,2163,2338 'descript':1428,1452,1645,1829,2004,2179 'detail':503 'dict':1357 'direct':860,1052,1149,1522,1704,1888,2063,2238 'display':867,985,1059,1156 'durat':1494,1498 'e':121,1368,1374 'e.164':175,1566,1583,1748,1765,1932,1949,2107,2124,2282,2299 'e.g':177,1331 'e.message':128 'e.status':126,130 'ed25519':1308,1315,1417,1420 'email':641 'enabl':1018 'endpoint':216,369 'enum':275,383,441,531,619,684,777,861,882,893,896,998,1002,1053,1074,1085,1088,1150,1171,1182,1185,1455,1485,1518,1611,1648,1678,1700,1787,1795,1832,1862,1884,1970,2007,2037,2059,2145,2182,2212,2234,2320 'error':48,57,62,66,70,90,125,135,142,157 'event':318,323,376,412,431,484,489,574,579,612,653,674,727,732,820,825,1360,1381,1390,1399,1427,1456,1481,1490,1649,1674,1683,1833,1858,1867,2008,2033,2042,2183,2208,2217 'event.data.event':1391 'exampl':38 'example.com':433,676,1036 'example.com/document.pdf':1035 'exceed':963,968 'except':86,95,118,1365,1366 'exist':506,595 'expir':1282 'exponenti':104,166 'f':123,1370,1388 'fail':54,902,958,1094,1191,1373,1434,1796 'failov':319,413,485,575,654,728,821,922,1114,1211 'failur':1793 'fax':3,6,213,222,241,252,256,333,338,422,428,499,507,520,589,596,640,663,671,742,747,766,837,894,930,933,1024,1086,1122,1127,1183,1219,1233,1237,1271,1275,1430,1433,1436,1440,1443,1516,1525,1531,1545,1557,1569,1586,1601,1617,1698,1707,1713,1727,1739,1751,1768,1783,1801,1882,1891,1897,1911,1923,1935,1952,1967,1976,2057,2066,2072,2086,2098,2110,2127,2142,2151,2232,2241,2247,2261,2273,2285,2302,2317,2326 'fax-rout':427,670 'fax.data':1039,1136 'fax.delivered':1429,1449,1486 'fax.failed':1432,1642,1679 'fax.media.processed':1435,1826,1863 'fax.queued':1439,2001,2038 'fax.sending.started':1442,2176,2213 'fax_application.data':435,525,678,771 'field':138,159,1448,1450,1643,1827,2002,2177 'file':934,945,960 'filter':240 'flask':1332 'follow':1244,1397 'format':140,160,176,997,1567,1584,1749,1766,1933,1950,2108,2125,2283,2300 'found':154 'frankfurt':294,402,460,550,638,703,796 'germani':295,403,461,551,639,704,797 'get':260,516,838,1123 'handl':49,69,1344 'handler':1330 'header':114,1320,1356,1363,1364,1418 'hello':85 'high':884,886,1004,1006,1076,1078,1173,1175 'id':302,468,518,558,607,666,711,764,804,853,870,974,1027,1045,1062,1125,1142,1159,1222,1253,1285,1505,1508,1527,1592,1687,1690,1709,1774,1871,1874,1893,1958,2046,2049,2068,2133,2221,2224,2243,2308 'identifi':1457,1465,1529,1594,1650,1658,1711,1776,1834,1842,1895,1960,2009,2017,2070,2135,2184,2192,2245,2310 'il':278,386,444,534,622,687,780 'import':15,19,75,106,168 'inbound':304,404,470,560,645,713,806,862,1054,1151,1274,1519,1701,1885,2060,2235 'includ':179,1311,1409 'initi':44,903,1095,1192 'insid':224,509 'instal':8,11 'insuffici':149 'integ':329,419,495,585,660,738,831,980,1496,1605,1627,1811,1986,2161,2336 'invalid':145,1376 'iso':1475,1668,1852,2027,2202 'item':201 'iter':198,206 'jose':282,390,448,538,626,691,784 'json':1338 'key':24,28,147 'latenc':276,384,442,532,620,685,778 'light':888,1008,1080,1177 'limit':59,99,163,937,941,962,967 'list':191,211,219,237,835 'london':288,396,454,544,632,697,790 'may':750 'media':872,875,908,911,988,991,1012,1033,1064,1067,1100,1103,1161,1164,1197,1200,1277,1437,1533,1547,1552,1559,1715,1729,1734,1741,1899,1913,1918,1925,2074,2088,2093,2100,2249,2263,2268,2275 'media.processed':898,1090,1187,1247,1971 'media.processing':905,1097,1194 'meta.attempt':1626,1810,1985,2160,2335 'meta.delivered':1632,1816,1991,2166,2341 'method':192,1341 'monochrom':994 'must':172 'name':297,350,374,426,463,553,610,669,706,799,868,873,986,989,1060,1065,1157,1162,1549,1553,1731,1735,1915,1919,2090,2094,2265,2269 'netherland':287,395,453,543,631,696,789 'network':56,89 'new':337 'normal':883,1003,1075,1172 'note':169 'null':330,420,496,586,644,661,739,832 'number':171,362,761,1564,1581,1606,1631,1746,1763,1815,1930,1947,1990,2105,2122,2165,2280,2297,2340 'object':305,307,405,407,471,473,561,563,646,648,714,716,807,809 'occur':1482,1675,1859,2034,2209 'ok':1394 'omit':36 'one':1241 'option':378,614,977 'origin':899,1091,1188,1248,1537,1719,1903,2078,2253 'os':16 'os.environ.get':25 'outbound':306,406,472,562,647,715,808,863,1055,1152,1236,1520,1702,1886,2061,2236 'overrid':274,382,440,530,618,683,776 'page':203,209,263,265,841,843,939,955,965,1609 'page.data':266,844 'page.id':269,847 'pagin':190,197 'paramet':343,601 'parenthes':189 'pars':1337,1384 'patch':605 'payload':1346,1362,1386,1447 'pdf':999,1541,1723,1907,2082,2257 'perman':744 'permiss':150 'phone':170,361,760,1563,1580,1745,1762,1929,1946,2104,2121,2279,2296 'pip':10 'post':370,970,1251,1283,1342 'prefix':181 'prevent':752 'preview':878,996,1015,1070,1167 'print':88,122,133,268,434,524,677,770,846,1038,1135,1264,1296,1369,1387 'process':1438 'product':72,1325 'programm':255 'python':4,7,14,74,262,421,519,662,765,840,1023,1126,1223,1255,1287,1326 'qualiti':881,1001,1073,1170 'queu':897,1089,1186,1246,1441,2146 'rate':58,98,162 'raw':1334,1352 'reason':1786 'receiv':251,904,906,1096,1098,1193,1195,1389,1622,1806,1981,2156,2331 'recipi':642 'record':308,474,564,717,810,891,1083,1180 'refresh':1269,1272 'reject':1788 'request':347,604,1310 'request.get':1347 'request.headers':1358 'requir':137,355,372,608,972 'resourc':152,1462,1469,1655,1662,1839,1846,2014,2021,2189,2196 'respect':969 'respons':230,515,1256,1288 'response.data':1265,1297 'result':78,204,1267,1299 'retri':94,102,112,164 'retriev':497 'retry-aft':111 'return':193,217,270,436,501,526,679,772,848,1040,1137,1266,1298,1375,1393 'router':429,672 'san':281,389,447,537,625,690,783 'sec':328,418,494,584,659,737,830,1495 'second':1503 'send':249,900,928,931,1092,1189,1250,1444,1514,1696,1792,1880,2055,2230,2321 'sent':344,1401,1572,1589,1754,1771,1938,1955,2113,2130,2288,2305 'set':592 'setup':13 'shown':46 'sign':1305 'signatur':1314,1323,1377,1379,1416,1421 'sip':1575,1757,1941,2116,2291 'size':936,961 'skill' 'skill-telnyx-fax-python' 'source-team-telnyx' 'space':186 'start':1445 'state':850,982,1042,1139,1245,1619,1621,1803,1805,1978,1980,2153,2155,2328,2330 'status':895,1087,1184,1614,1798,1973,2148,2323 'store':907,910,1011,1014,1099,1102,1196,1199 'string':298,301,303,310,313,316,410,464,467,469,476,479,482,554,557,559,566,569,572,643,651,707,710,712,719,722,725,800,803,805,812,815,818,851,854,865,869,874,877,880,913,915,924,927,983,987,990,993,1022,1043,1046,1057,1061,1066,1069,1072,1105,1107,1116,1119,1140,1143,1154,1158,1163,1166,1169,1202,1204,1213,1216,1268,1300,1355,1506,1535,1550,1561,1578,1620,1688,1717,1732,1743,1760,1804,1872,1901,1916,1927,1944,1979,2047,2076,2091,2102,2119,2154,2222,2251,2266,2277,2294,2329 'sydney':284,392,450,540,628,693,786 't38':1017 'tag':311,408,477,567,649,720,813 'telnyx':2,5,12,18,20,22,26,76,259,1304,1313,1318,1411,1415 'telnyx-fax-python':1 'telnyx-signature-ed25519':1312,1414 'telnyx-timestamp':1317,1410 'telnyx.apiconnectionerror':87 'telnyx.apistatuserror':119 'telnyx.ratelimiterror':96 'text':84,1350 'threshold':979 'tiff':1000 'time':107,859,920,1051,1112,1148,1209,1474,1667,1851,2026,2201 'time.sleep':108 'timeout':327,417,493,583,658,736,829 'timestamp':1319,1412 'topic-agent-skills' 'topic-ai-coding-agent' 'topic-claude-code' 'topic-cpaas' 'topic-cursor' 'topic-iot' 'topic-llm' 'topic-sdk' 'topic-sip' 'topic-sms' 'topic-speech-to-text' 'topic-telephony' 'toronto':290,398,456,546,634,699,792 'transfer':1608 'tri':77,1359 'true':1351 'type':309,475,565,718,811,892,1084,1181,1392,1451,1454,1459,1467,1484,1488,1644,1647,1652,1660,1677,1681,1828,1831,1836,1844,1861,1865,2003,2006,2011,2019,2036,2040,2178,2181,2186,2194,2211,2215 'uk':289,397,455,545,633,698,791 'ultra':887,889,1007,1009,1079,1081,1176,1178 'updat':314,480,570,587,591,723,816,916,1108,1205 'uri':321,325,415,487,491,577,581,656,730,734,823,827,1576,1634,1758,1818,1942,1993,2117,2168,2292,2343 'url':320,324,353,377,414,432,486,490,576,580,613,655,675,729,733,822,826,876,879,912,923,926,992,1021,1034,1068,1071,1104,1115,1118,1165,1168,1201,1212,1215,1278,1406,1534,1538,1636,1716,1720,1820,1900,1904,1995,2075,2079,2170,2250,2254,2345 'use':199,239,244,253,366,758,1333,1423,1512,1542,1554,1694,1724,1736,1878,1908,1920,2053,2083,2095,2228,2258,2270 'user':1597,1779,1963,2138,2313 'uuid':871,1063,1160,1464,1528,1593,1657,1710,1775,1841,1894,1959,2016,2069,2134,2191,2244,2309 'va':280,388,446,536,624,689,782 'valid':61,134,156,942,1380 'vancouv':292,400,458,548,636,701,794 'verif':1303,1372,1422 'verifi':1322,1426 'view':833,1120 'wait':100 'webhook':317,322,326,352,375,411,416,430,483,488,492,573,578,582,611,652,657,673,726,731,735,819,824,828,921,925,1020,1113,1117,1210,1214,1301,1302,1306,1329,1345,1371,1385,1398,1405,1408,1446,1638,1822,1997,2172,2347","prices":[{"id":"c387fa07-6d82-4210-99a1-fc2751b62f4a","listingId":"68ad24ff-4853-42c3-b6fd-756a8d75c903","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"team-telnyx","category":"ai","install_from":"skills.sh"},"createdAt":"2026-04-18T22:06:27.740Z"}],"sources":[{"listingId":"68ad24ff-4853-42c3-b6fd-756a8d75c903","source":"github","sourceId":"team-telnyx/ai/telnyx-fax-python","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-fax-python","isPrimary":false,"firstSeenAt":"2026-04-18T22:06:27.740Z","lastSeenAt":"2026-04-22T12:54:45.432Z"}],"details":{"listingId":"68ad24ff-4853-42c3-b6fd-756a8d75c903","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-fax-python","github":{"repo":"team-telnyx/ai","stars":167,"topics":["agent-skills","ai","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk","sip","sms","speech-to-text","telephony","telnyx","tts","twilio-migration","voice-agents","voice-ai","webrtc","windsurf"],"license":"mit","html_url":"https://github.com/team-telnyx/ai","pushed_at":"2026-04-21T22:09:49Z","description":"Official one-stop shop for AI Agents and developers building with Telnyx.","skill_md_sha":"9660c7cc18b1163a62fcd3c27746f58dd0b09060","skill_md_path":"skills/telnyx-fax-python/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-fax-python"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-fax-python","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-fax-python"},"updatedAt":"2026-04-22T12:54:45.432Z"}}