{"id":"322c662d-8e65-4f48-8b1c-b4f643b93e13","shortId":"RuANbG","kind":"skill","title":"telnyx-numbers-compliance-curl","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Numbers Compliance - curl\n\n## Installation\n\n```text\n# curl is pre-installed on macOS, Linux, and Windows 10+\n```\n\n## Setup\n\n```bash\nexport TELNYX_API_KEY=\"YOUR_API_KEY_HERE\"\n```\n\nAll examples below use `$TELNYX_API_KEY` for authentication.\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```bash\n# Check HTTP status code in response\nresponse=$(curl -s -w \"\\n%{http_code}\" \\\n  -X POST \"https://api.telnyx.com/v2/messages\" \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"to\": \"+13125550001\", \"from\": \"+13125550002\", \"text\": \"Hello\"}')\n\nhttp_code=$(echo \"$response\" | tail -1)\nbody=$(echo \"$response\" | sed '$d')\n\ncase $http_code in\n  2*) echo \"Success: $body\" ;;\n  422) echo \"Validation error — check required fields and formats\" ;;\n  429) echo \"Rate limited — retry after delay\"; sleep 1 ;;\n  401) echo \"Authentication failed — check TELNYX_API_KEY\" ;;\n  *)   echo \"Error $http_code: $body\" ;;\nesac\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 endpoints return paginated results. Use `page[number]` and `page[size]` query parameters to navigate pages. Check `meta.total_pages` in the response.\n\n## Retrieve Bundles\n\nGet all allowed bundles.\n\n`GET /bundle_pricing/billing_bundles`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/bundle_pricing/billing_bundles\"\n```\n\nReturns: `cost_code` (string), `created_at` (date), `currency` (string), `id` (uuid), `is_public` (boolean), `mrc_price` (float), `name` (string), `slug` (string), `specs` (array[string])\n\n## Get Bundle By Id\n\nGet a single bundle by ID.\n\n`GET /bundle_pricing/billing_bundles/{bundle_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/bundle_pricing/billing_bundles/8661948c-a386-4385-837f-af00f40f111a\"\n```\n\nReturns: `active` (boolean), `bundle_limits` (array[object]), `cost_code` (string), `created_at` (date), `id` (uuid), `is_public` (boolean), `name` (string), `slug` (string)\n\n## Get User Bundles\n\nGet a paginated list of user bundles.\n\n`GET /bundle_pricing/user_bundles`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/bundle_pricing/user_bundles\"\n```\n\nReturns: `active` (boolean), `billing_bundle` (object), `created_at` (date), `id` (uuid), `resources` (array[object]), `updated_at` (date), `user_id` (uuid)\n\n## Create User Bundles\n\nCreates multiple user bundles for the user.\n\n`POST /bundle_pricing/user_bundles/bulk`\n\nOptional: `idempotency_key` (uuid), `items` (array[object])\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  \"https://api.telnyx.com/v2/bundle_pricing/user_bundles/bulk\"\n```\n\nReturns: `active` (boolean), `billing_bundle` (object), `created_at` (date), `id` (uuid), `resources` (array[object]), `updated_at` (date), `user_id` (uuid)\n\n## Get Unused User Bundles\n\nReturns all user bundles that aren't in use.\n\n`GET /bundle_pricing/user_bundles/unused`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/bundle_pricing/user_bundles/unused\"\n```\n\nReturns: `billing_bundle` (object), `user_bundle_ids` (array[string])\n\n## Get User Bundle by Id\n\nRetrieves a user bundle by its ID.\n\n`GET /bundle_pricing/user_bundles/{user_bundle_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/bundle_pricing/user_bundles/ca1d2263-d1f1-43ac-ba53-248e7a4bb26a\"\n```\n\nReturns: `active` (boolean), `billing_bundle` (object), `created_at` (date), `id` (uuid), `resources` (array[object]), `updated_at` (date), `user_id` (uuid)\n\n## Deactivate User Bundle\n\nDeactivates a user bundle by its ID.\n\n`DELETE /bundle_pricing/user_bundles/{user_bundle_id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/bundle_pricing/user_bundles/ca1d2263-d1f1-43ac-ba53-248e7a4bb26a\"\n```\n\nReturns: `active` (boolean), `billing_bundle` (object), `created_at` (date), `id` (uuid), `resources` (array[object]), `updated_at` (date), `user_id` (uuid)\n\n## Get User Bundle Resources\n\nRetrieves the resources of a user bundle by its ID.\n\n`GET /bundle_pricing/user_bundles/{user_bundle_id}/resources`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/bundle_pricing/user_bundles/ca1d2263-d1f1-43ac-ba53-248e7a4bb26a/resources\"\n```\n\nReturns: `created_at` (date), `id` (uuid), `resource` (string), `resource_type` (string), `updated_at` (date)\n\n## List all document links\n\nList all documents links ordered by created_at descending.\n\n`GET /document_links`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/document_links\"\n```\n\nReturns: `created_at` (string), `document_id` (uuid), `id` (uuid), `linked_record_type` (string), `linked_resource_id` (string), `record_type` (string), `updated_at` (string)\n\n## List all documents\n\nList all documents ordered by created_at descending.\n\n`GET /documents`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/documents?filter={'filename': {'contains': 'invoice'}, 'customer_reference': {'in': ['REF001', 'REF002']}, 'created_at': {'gt': '2021-01-01T00:00:00Z'}}&sort=['filename']\"\n```\n\nReturns: `av_scan_status` (enum: scanned, infected, pending_scan, not_scanned), `content_type` (string), `created_at` (string), `customer_reference` (string), `filename` (string), `id` (uuid), `record_type` (string), `sha256` (string), `size` (object), `status` (enum: pending, verified, denied), `updated_at` (string)\n\n## Upload a document\n\nUpload a document.  Uploaded files must be linked to a service within 30 minutes or they will be automatically deleted.\n\n`POST /documents`\n\nOptional: `customer_reference` (string), `file` (byte), `filename` (string), `url` (string)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -F \"file=@/path/to/file\" \\\n  -F \"customer_reference=MY REF 001\" \\\n  \"https://api.telnyx.com/v2/documents\"\n```\n\nReturns: `av_scan_status` (enum: scanned, infected, pending_scan, not_scanned), `content_type` (string), `created_at` (string), `customer_reference` (string), `filename` (string), `id` (uuid), `record_type` (string), `sha256` (string), `size` (object), `status` (enum: pending, verified, denied), `updated_at` (string)\n\n## Retrieve a document\n\nRetrieve a document.\n\n`GET /documents/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/documents/6a09cdc3-8948-47f0-aa62-74ac943d6c58\"\n```\n\nReturns: `av_scan_status` (enum: scanned, infected, pending_scan, not_scanned), `content_type` (string), `created_at` (string), `customer_reference` (string), `filename` (string), `id` (uuid), `record_type` (string), `sha256` (string), `size` (object), `status` (enum: pending, verified, denied), `updated_at` (string)\n\n## Update a document\n\nUpdate a document.\n\n`PATCH /documents/{id}`\n\nOptional: `av_scan_status` (enum: scanned, infected, pending_scan, not_scanned), `content_type` (string), `created_at` (string), `customer_reference` (string), `filename` (string), `id` (uuid), `record_type` (string), `sha256` (string), `size` (object), `status` (enum: pending, verified, denied), `updated_at` (string)\n\n```bash\ncurl \\\n  -X PATCH \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  \"https://api.telnyx.com/v2/documents/6a09cdc3-8948-47f0-aa62-74ac943d6c58\"\n```\n\nReturns: `av_scan_status` (enum: scanned, infected, pending_scan, not_scanned), `content_type` (string), `created_at` (string), `customer_reference` (string), `filename` (string), `id` (uuid), `record_type` (string), `sha256` (string), `size` (object), `status` (enum: pending, verified, denied), `updated_at` (string)\n\n## Delete a document\n\nDelete a document.  A document can only be deleted if it's not linked to a service. If it is linked to a service, it must be unlinked prior to deleting.\n\n`DELETE /documents/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/documents/6a09cdc3-8948-47f0-aa62-74ac943d6c58\"\n```\n\nReturns: `av_scan_status` (enum: scanned, infected, pending_scan, not_scanned), `content_type` (string), `created_at` (string), `customer_reference` (string), `filename` (string), `id` (uuid), `record_type` (string), `sha256` (string), `size` (object), `status` (enum: pending, verified, denied), `updated_at` (string)\n\n## Download a document\n\nDownload a document.\n\n`GET /documents/{id}/download`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/documents/6a09cdc3-8948-47f0-aa62-74ac943d6c58/download\"\n```\n\n## Generate a temporary download link for a document\n\nGenerates a temporary pre-signed URL that can be used to download the document directly from the storage backend without authentication.\n\n`GET /documents/{id}/download_link`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/documents/550e8400-e29b-41d4-a716-446655440000/download_link\"\n```\n\nReturns: `url` (uri)\n\n## Update requirement group for a phone number order\n\n`POST /number_order_phone_numbers/{id}/requirement_group` — Required: `requirement_group_id`\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"requirement_group_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}' \\\n  \"https://api.telnyx.com/v2/number_order_phone_numbers/550e8400-e29b-41d4-a716-446655440000/requirement_group\"\n```\n\nReturns: `bundle_id` (uuid), `country_code` (string), `deadline` (date-time), `id` (uuid), `is_block_number` (boolean), `locality` (string), `order_request_id` (uuid), `phone_number` (string), `phone_number_type` (string), `record_type` (string), `regulatory_requirements` (array[object]), `requirements_met` (boolean), `requirements_status` (string), `status` (string), `sub_number_order_id` (uuid)\n\n## Retrieve regulatory requirements for a list of phone numbers\n\n`GET /phone_numbers_regulatory_requirements`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/phone_numbers_regulatory_requirements\"\n```\n\nReturns: `phone_number` (string), `phone_number_type` (string), `record_type` (string), `region_information` (array[object]), `regulatory_requirements` (array[object])\n\n## Retrieve regulatory requirements\n\n`GET /regulatory_requirements`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/regulatory_requirements\"\n```\n\nReturns: `action` (string), `country_code` (string), `phone_number_type` (string), `regulatory_requirements` (array[object])\n\n## List requirement groups\n\n`GET /requirement_groups`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/requirement_groups\"\n```\n\n## Create a new requirement group\n\n`POST /requirement_groups` — Required: `country_code`, `phone_number_type`, `action`\n\nOptional: `customer_reference` (string), `regulatory_requirements` (array[object])\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"country_code\": \"US\",\n  \"phone_number_type\": \"local\",\n  \"action\": \"ordering\"\n}' \\\n  \"https://api.telnyx.com/v2/requirement_groups\"\n```\n\nReturns: `action` (string), `country_code` (string), `created_at` (date-time), `customer_reference` (string), `id` (string), `phone_number_type` (string), `record_type` (string), `regulatory_requirements` (array[object]), `status` (enum: approved, unapproved, pending-approval, declined, expired), `updated_at` (date-time)\n\n## Get a single requirement group by ID\n\n`GET /requirement_groups/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/requirement_groups/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `action` (string), `country_code` (string), `created_at` (date-time), `customer_reference` (string), `id` (string), `phone_number_type` (string), `record_type` (string), `regulatory_requirements` (array[object]), `status` (enum: approved, unapproved, pending-approval, declined, expired), `updated_at` (date-time)\n\n## Update requirement values in requirement group\n\n`PATCH /requirement_groups/{id}`\n\nOptional: `customer_reference` (string), `regulatory_requirements` (array[object])\n\n```bash\ncurl \\\n  -X PATCH \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  \"https://api.telnyx.com/v2/requirement_groups/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `action` (string), `country_code` (string), `created_at` (date-time), `customer_reference` (string), `id` (string), `phone_number_type` (string), `record_type` (string), `regulatory_requirements` (array[object]), `status` (enum: approved, unapproved, pending-approval, declined, expired), `updated_at` (date-time)\n\n## Delete a requirement group by ID\n\n`DELETE /requirement_groups/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/requirement_groups/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `action` (string), `country_code` (string), `created_at` (date-time), `customer_reference` (string), `id` (string), `phone_number_type` (string), `record_type` (string), `regulatory_requirements` (array[object]), `status` (enum: approved, unapproved, pending-approval, declined, expired), `updated_at` (date-time)\n\n## Submit a Requirement Group for Approval\n\n`POST /requirement_groups/{id}/submit_for_approval`\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  \"https://api.telnyx.com/v2/requirement_groups/550e8400-e29b-41d4-a716-446655440000/submit_for_approval\"\n```\n\nReturns: `action` (string), `country_code` (string), `created_at` (date-time), `customer_reference` (string), `id` (string), `phone_number_type` (string), `record_type` (string), `regulatory_requirements` (array[object]), `status` (enum: approved, unapproved, pending-approval, declined, expired), `updated_at` (date-time)\n\n## List all requirement types\n\nList all requirement types ordered by created_at descending\n\n`GET /requirement_types`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/requirement_types?sort=['name']\"\n```\n\nReturns: `acceptance_criteria` (object), `created_at` (string), `description` (string), `example` (string), `id` (uuid), `name` (string), `record_type` (string), `type` (enum: document, address, textual), `updated_at` (string)\n\n## Retrieve a requirement types\n\nRetrieve a requirement type by id\n\n`GET /requirement_types/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/requirement_types/a38c217a-8019-48f8-bff6-0fdd9939075b\"\n```\n\nReturns: `acceptance_criteria` (object), `created_at` (string), `description` (string), `example` (string), `id` (uuid), `name` (string), `record_type` (string), `type` (enum: document, address, textual), `updated_at` (string)\n\n## List all requirements\n\nList all requirements with filtering, sorting, and pagination\n\n`GET /requirements`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/requirements?sort=['country_code']\"\n```\n\nReturns: `action` (enum: both, branded_calling, ordering, porting), `country_code` (string), `created_at` (string), `id` (uuid), `locality` (string), `phone_number_type` (enum: local, national, toll_free), `record_type` (string), `requirements_types` (array[object]), `updated_at` (string)\n\n## Retrieve a document requirement\n\nRetrieve a document requirement record\n\n`GET /requirements/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/requirements/a9dad8d5-fdbd-49d7-aa23-39bb08a5ebaa\"\n```\n\nReturns: `action` (enum: both, branded_calling, ordering, porting), `country_code` (string), `created_at` (string), `id` (uuid), `locality` (string), `phone_number_type` (enum: local, national, toll_free), `record_type` (string), `requirements_types` (array[object]), `updated_at` (string)\n\n## Update requirement group for a sub number order\n\n`POST /sub_number_orders/{id}/requirement_group` — Required: `requirement_group_id`\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"requirement_group_id\": \"a4b201f9-8646-4e54-a7d2-b2e403eeaf8c\"\n}' \\\n  \"https://api.telnyx.com/v2/sub_number_orders/550e8400-e29b-41d4-a716-446655440000/requirement_group\"\n```\n\nReturns: `country_code` (string), `created_at` (date-time), `customer_reference` (string), `id` (uuid), `is_block_sub_number_order` (boolean), `order_request_id` (uuid), `phone_number_type` (string), `phone_numbers` (array[object]), `phone_numbers_count` (integer), `record_type` (string), `regulatory_requirements` (array[object]), `requirements_met` (boolean), `status` (string), `updated_at` (date-time)\n\n## List all user addresses\n\nReturns a list of your user addresses.\n\n`GET /user_addresses`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/user_addresses?sort=street_address\"\n```\n\nReturns: `administrative_area` (string), `borough` (string), `business_name` (string), `country_code` (string), `created_at` (string), `customer_reference` (string), `extended_address` (string), `first_name` (string), `id` (uuid), `last_name` (string), `locality` (string), `neighborhood` (string), `phone_number` (string), `postal_code` (string), `record_type` (string), `street_address` (string), `updated_at` (string)\n\n## Creates a user address\n\nCreates a user address.\n\n`POST /user_addresses` — Required: `first_name`, `last_name`, `business_name`, `street_address`, `locality`, `country_code`\n\nOptional: `administrative_area` (string), `borough` (string), `customer_reference` (string), `extended_address` (string), `neighborhood` (string), `phone_number` (string), `postal_code` (string), `skip_address_verification` (boolean)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"first_name\": \"Alfred\",\n  \"last_name\": \"Foster\",\n  \"business_name\": \"Toy-O'Kon\",\n  \"street_address\": \"600 Congress Avenue\",\n  \"locality\": \"Austin\",\n  \"country_code\": \"US\"\n}' \\\n  \"https://api.telnyx.com/v2/user_addresses\"\n```\n\nReturns: `administrative_area` (string), `borough` (string), `business_name` (string), `country_code` (string), `created_at` (string), `customer_reference` (string), `extended_address` (string), `first_name` (string), `id` (uuid), `last_name` (string), `locality` (string), `neighborhood` (string), `phone_number` (string), `postal_code` (string), `record_type` (string), `street_address` (string), `updated_at` (string)\n\n## Retrieve a user address\n\nRetrieves the details of an existing user address.\n\n`GET /user_addresses/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/user_addresses/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `administrative_area` (string), `borough` (string), `business_name` (string), `country_code` (string), `created_at` (string), `customer_reference` (string), `extended_address` (string), `first_name` (string), `id` (uuid), `last_name` (string), `locality` (string), `neighborhood` (string), `phone_number` (string), `postal_code` (string), `record_type` (string), `street_address` (string), `updated_at` (string)\n\n## List all Verified Numbers\n\nGets a paginated list of Verified Numbers.\n\n`GET /verified_numbers`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/verified_numbers\"\n```\n\nReturns: `phone_number` (string), `record_type` (enum: verified_number), `verified_at` (string)\n\n## Request phone number verification\n\nInitiates phone number verification procedure. Supports DTMF extension dialing for voice calls to numbers behind IVR systems.\n\n`POST /verified_numbers` — Required: `phone_number`, `verification_method`\n\nOptional: `extension` (string)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"phone_number\": \"+15551234567\",\n  \"verification_method\": \"sms\"\n}' \\\n  \"https://api.telnyx.com/v2/verified_numbers\"\n```\n\nReturns: `phone_number` (string), `verification_method` (string)\n\n## Retrieve a verified number\n\n`GET /verified_numbers/{phone_number}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/verified_numbers/+15551234567\"\n```\n\nReturns: `phone_number` (string), `record_type` (enum: verified_number), `verified_at` (string)\n\n## Delete a verified number\n\n`DELETE /verified_numbers/{phone_number}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/verified_numbers/+15551234567\"\n```\n\nReturns: `phone_number` (string), `record_type` (enum: verified_number), `verified_at` (string)\n\n## Submit verification code\n\n`POST /verified_numbers/{phone_number}/actions/verify` — Required: `verification_code`\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"verification_code\": \"123456\"\n}' \\\n  \"https://api.telnyx.com/v2/verified_numbers/+15551234567/actions/verify\"\n```\n\nReturns: `phone_number` (string), `record_type` (enum: verified_number), `verified_at` (string)","tags":["telnyx","numbers","compliance","curl","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm"],"capabilities":["skill","source-team-telnyx","skill-telnyx-numbers-compliance-curl","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-numbers-compliance-curl","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 (21,826 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-22T06:54:41.334Z","embedding":null,"createdAt":"2026-04-18T22:07:02.456Z","updatedAt":"2026-04-22T06:54:41.334Z","lastSeenAt":"2026-04-22T06:54:41.334Z","tsv":"'+13125550001':100,193 '+13125550002':102 '+15551234567':2369 '-01':679,680 '-1':110 '-4e54':1943 '-8646':1942 '/actions/verify':2454 '/bundle_pricing/billing_bundles':235,282 '/bundle_pricing/user_bundles':329,466,512,564 '/bundle_pricing/user_bundles/bulk':372 '/bundle_pricing/user_bundles/unused':432 '/document_links':608 '/documents':655,749,828,887,1020,1081,1126 '/download':1083 '/download_link':1128 '/number_order_phone_numbers':1152 '/path/to/file':772 '/phone_numbers_regulatory_requirements':1247 '/regulatory_requirements':1282 '/requirement_group':1154,1917 '/requirement_groups':1312,1330,1423,1484,1560,1623 '/requirement_types':1699,1748 '/requirements':1799,1857 '/resources':568 '/sub_number_orders':1915 '/submit_for_approval':1625 '/user_addresses':2015,2084,2223 '/v2/bundle_pricing/billing_bundles':246 '/v2/bundle_pricing/billing_bundles/8661948c-a386-4385-837f-af00f40f111a':295 '/v2/bundle_pricing/user_bundles':340 '/v2/bundle_pricing/user_bundles/bulk':397 '/v2/bundle_pricing/user_bundles/ca1d2263-d1f1-43ac-ba53-248e7a4bb26a':480,528 '/v2/bundle_pricing/user_bundles/ca1d2263-d1f1-43ac-ba53-248e7a4bb26a/resources':579 '/v2/bundle_pricing/user_bundles/unused':443 '/v2/document_links':619 '/v2/documents':781 '/v2/documents/550e8400-e29b-41d4-a716-446655440000/download_link':1139 '/v2/documents/6a09cdc3-8948-47f0-aa62-74ac943d6c58':840,945,1034 '/v2/documents/6a09cdc3-8948-47f0-aa62-74ac943d6c58/download':1094 '/v2/documents?filter=':666 '/v2/messages':86 '/v2/number_order_phone_numbers/550e8400-e29b-41d4-a716-446655440000/requirement_group':1186 '/v2/phone_numbers_regulatory_requirements':1258 '/v2/regulatory_requirements':1293 '/v2/requirement_groups':1323,1373 '/v2/requirement_groups/550e8400-e29b-41d4-a716-446655440000':1435,1511,1574 '/v2/requirement_groups/550e8400-e29b-41d4-a716-446655440000/submit_for_approval':1643 '/v2/requirement_types/a38c217a-8019-48f8-bff6-0fdd9939075b':1760 '/v2/requirement_types?sort=[''name'']':1710 '/v2/requirements/a9dad8d5-fdbd-49d7-aa23-39bb08a5ebaa':1869 '/v2/requirements?sort=[''country_code'']':1810 '/v2/sub_number_orders/550e8400-e29b-41d4-a716-446655440000/requirement_group':1949 '/v2/user_addresses':2161 '/v2/user_addresses/550e8400-e29b-41d4-a716-446655440000':2235 '/v2/user_addresses?sort=street_address':2026 '/v2/verified_numbers':2307,2375 '/v2/verified_numbers/+15551234567':2401,2434 '/v2/verified_numbers/+15551234567/actions/verify':2479 '/verified_numbers':2296,2342,2388,2419,2451 '00':682 '001':778 '00z':683 '1':141 '10':22 '123456':2476 '2':120 '2021':678 '30':740 '401':61,142,159 '403':163 '404':166 '41d4':1181 '422':57,124,170 '429':54,133,176 '446655440000':1183 '550e8400':1178 '600':2151 'a4b201f9':1941 'a716':1182 'a7d2':1945 'a7d2-b2e403eeaf8c':1944 'accept':1712,1762 'action':1295,1337,1369,1375,1437,1513,1576,1645,1812,1871 'activ':297,342,399,482,530 'address':1732,1782,2006,2013,2046,2070,2078,2082,2093,2107,2118,2150,2181,2205,2213,2221,2255,2279 'administr':2028,2098,2163,2237 'alfr':2139 'allow':232 'alway':62 'api':27,30,38,45,91,148,161,242,291,336,388,439,476,524,575,615,662,768,836,936,1030,1090,1135,1167,1254,1289,1319,1354,1431,1502,1570,1634,1706,1756,1806,1865,1930,2022,2129,2231,2303,2359,2397,2430,2466 'api.telnyx.com':85,245,294,339,396,442,479,527,578,618,665,780,839,944,1033,1093,1138,1185,1257,1292,1322,1372,1434,1510,1573,1642,1709,1759,1809,1868,1948,2025,2160,2234,2306,2374,2400,2433,2478 'api.telnyx.com/v2/bundle_pricing/billing_bundles':244 'api.telnyx.com/v2/bundle_pricing/billing_bundles/8661948c-a386-4385-837f-af00f40f111a':293 'api.telnyx.com/v2/bundle_pricing/user_bundles':338 'api.telnyx.com/v2/bundle_pricing/user_bundles/bulk':395 'api.telnyx.com/v2/bundle_pricing/user_bundles/ca1d2263-d1f1-43ac-ba53-248e7a4bb26a':478,526 'api.telnyx.com/v2/bundle_pricing/user_bundles/ca1d2263-d1f1-43ac-ba53-248e7a4bb26a/resources':577 'api.telnyx.com/v2/bundle_pricing/user_bundles/unused':441 'api.telnyx.com/v2/document_links':617 'api.telnyx.com/v2/documents':779 'api.telnyx.com/v2/documents/550e8400-e29b-41d4-a716-446655440000/download_link':1137 'api.telnyx.com/v2/documents/6a09cdc3-8948-47f0-aa62-74ac943d6c58':838,943,1032 'api.telnyx.com/v2/documents/6a09cdc3-8948-47f0-aa62-74ac943d6c58/download':1092 'api.telnyx.com/v2/documents?filter=':664 'api.telnyx.com/v2/messages':84 'api.telnyx.com/v2/number_order_phone_numbers/550e8400-e29b-41d4-a716-446655440000/requirement_group':1184 'api.telnyx.com/v2/phone_numbers_regulatory_requirements':1256 'api.telnyx.com/v2/regulatory_requirements':1291 'api.telnyx.com/v2/requirement_groups':1321,1371 'api.telnyx.com/v2/requirement_groups/550e8400-e29b-41d4-a716-446655440000':1433,1509,1572 'api.telnyx.com/v2/requirement_groups/550e8400-e29b-41d4-a716-446655440000/submit_for_approval':1641 'api.telnyx.com/v2/requirement_types/a38c217a-8019-48f8-bff6-0fdd9939075b':1758 'api.telnyx.com/v2/requirement_types?sort=[''name'']':1708 'api.telnyx.com/v2/requirements/a9dad8d5-fdbd-49d7-aa23-39bb08a5ebaa':1867 'api.telnyx.com/v2/requirements?sort=[''country_code'']':1808 'api.telnyx.com/v2/sub_number_orders/550e8400-e29b-41d4-a716-446655440000/requirement_group':1947 'api.telnyx.com/v2/user_addresses':2159 'api.telnyx.com/v2/user_addresses/550e8400-e29b-41d4-a716-446655440000':2233 'api.telnyx.com/v2/user_addresses?sort=street_address':2024 'api.telnyx.com/v2/verified_numbers':2305,2373 'api.telnyx.com/v2/verified_numbers/+15551234567':2399,2432 'api.telnyx.com/v2/verified_numbers/+15551234567/actions/verify':2477 'application/json':97,394,942,1173,1360,1508,1640,1936,2135,2365,2472 'approv':1403,1407,1465,1469,1541,1545,1604,1608,1621,1673,1677 'area':2029,2099,2164,2238 'aren':427 'array':269,301,353,378,410,451,493,541,1222,1272,1276,1306,1344,1399,1461,1492,1537,1600,1669,1842,1901,1980,1991 'austin':2155 'authent':41,59,144,1124 'author':88,239,288,333,385,436,473,521,572,612,659,765,833,933,1027,1087,1132,1164,1251,1286,1316,1351,1428,1499,1567,1631,1703,1753,1803,1862,1927,2019,2126,2228,2300,2356,2394,2427,2463 'automat':746 'av':687,783,842,890,947,1036 'avenu':2153 'b2e403eeaf8c':1946 'backend':1122 'backoff':182 'bash':24,68,236,285,330,380,433,470,516,569,609,656,760,830,928,1022,1084,1129,1159,1248,1283,1313,1346,1425,1494,1562,1626,1700,1750,1800,1859,1922,2016,2121,2225,2297,2351,2391,2422,2458 'bearer':89,240,289,334,386,437,474,522,573,613,660,766,834,934,1028,1088,1133,1165,1252,1287,1317,1352,1429,1500,1568,1632,1704,1754,1804,1863,1928,2020,2127,2229,2301,2357,2395,2428,2464 'behind':2338 'bill':344,401,445,484,532 'block':1201,1965 'bodi':111,123,154 'boolean':260,298,313,343,400,483,531,1203,1226,1969,1995,2120 'borough':2031,2101,2166,2240 'brand':1815,1874 'bundl':229,233,272,278,283,299,320,327,345,363,367,402,421,425,446,449,455,461,468,485,503,507,514,533,551,559,566,1188 'busi':2033,2090,2143,2168,2242 'byte':755 'call':46,1816,1875,2335 'case':116 'check':69,128,146,173,222 'code':67,72,81,106,118,153,158,199,249,304,1192,1298,1333,1363,1378,1440,1516,1579,1648,1820,1879,1952,2037,2064,2096,2115,2157,2172,2199,2246,2273,2449,2457,2475 'common':156 'complianc':4,8 'congress':2152 'contain':668 'content':95,392,697,793,852,900,940,957,1046,1171,1358,1506,1638,1934,2133,2363,2470 'content-typ':94,391,939,1170,1357,1505,1637,1933,2132,2362,2469 'cost':248,303 'count':1984 'countri':198,1191,1297,1332,1362,1377,1439,1515,1578,1647,1819,1878,1951,2036,2095,2156,2171,2245 'creat':251,306,347,361,364,404,487,535,581,604,621,651,675,700,796,855,903,960,1049,1324,1380,1442,1518,1581,1650,1695,1715,1765,1822,1881,1954,2039,2075,2079,2174,2248 'criteria':1713,1763 'curl':5,9,12,76,237,286,331,381,434,471,517,570,610,657,761,831,929,1023,1085,1130,1160,1249,1284,1314,1347,1426,1495,1563,1627,1701,1751,1801,1860,1923,2017,2122,2226,2298,2352,2392,2423,2459 'currenc':254 'custom':670,703,751,774,799,858,906,963,1052,1339,1385,1447,1487,1523,1586,1655,1959,2042,2103,2177,2251 'd':98,115,1174,1361,1937,2136,2366,2473 'dash':202 'date':253,308,349,357,406,414,489,497,537,545,583,593,1196,1383,1413,1445,1475,1521,1551,1584,1614,1653,1683,1957,2001 'date-tim':1195,1382,1412,1444,1474,1520,1550,1583,1613,1652,1682,1956,2000 'deactiv':501,504 'deadlin':1194 'declin':1408,1470,1546,1609,1678 'delay':139 'delet':511,519,747,985,988,996,1018,1019,1025,1553,1559,1565,2414,2418,2425 'deni':721,817,876,924,981,1070 'descend':606,653,1697 'descript':1718,1768 'detail':2216 'dial':2332 'direct':1118 'document':596,600,624,645,648,727,730,823,826,882,885,987,990,992,1076,1079,1102,1117,1731,1781,1849,1853 'download':1074,1077,1098,1115 'dtmf':2330 'e.164':190 'e.g':192 'e29b':1180 'e29b-41d4-a716':1179 'echo':107,112,121,125,134,143,150 'endpoint':207 'enum':690,718,786,814,845,873,893,921,950,978,1039,1067,1402,1464,1540,1603,1672,1730,1780,1813,1832,1872,1891,2314,2408,2441,2486 'error':42,51,56,60,64,127,151,157,172 'esac':155 'exampl':34,1720,1770 'exist':2219 'expir':1409,1471,1547,1610,1679 'exponenti':181 'export':25 'extend':2045,2106,2180,2254 'extens':2331,2349 'f':770,773 'fail':48,145 'field':130,174 'file':732,754,771 'filenam':667,685,706,756,802,861,909,966,1055 'filter':1794 'first':2048,2086,2137,2183,2257 'float':263 'format':132,175,191 'foster':2142 'found':169 'free':1836,1895 'generat':1095,1103 'get':230,234,271,275,281,318,321,328,418,431,453,465,549,563,607,654,827,1080,1125,1246,1281,1311,1415,1422,1698,1747,1798,1856,2014,2222,2288,2295,2387 'group':1145,1157,1176,1310,1328,1419,1482,1556,1619,1908,1920,1939 'gt':677 'h':87,93,238,287,332,384,390,435,472,520,571,611,658,764,832,932,938,1026,1086,1131,1163,1169,1250,1285,1315,1350,1356,1427,1498,1504,1566,1630,1636,1702,1752,1802,1861,1926,1932,2018,2125,2131,2227,2299,2355,2361,2393,2426,2462,2468 'handl':43,63 'hello':104 'http':70,80,105,117,152 'id':256,274,280,284,309,350,359,407,416,450,457,464,469,490,499,510,515,538,547,562,567,584,625,627,635,708,804,829,863,888,911,968,1021,1057,1082,1127,1153,1158,1177,1189,1198,1208,1235,1388,1421,1424,1450,1485,1526,1558,1561,1589,1624,1658,1722,1746,1749,1772,1825,1858,1884,1916,1921,1940,1962,1972,2051,2186,2224,2260 'idempot':374 'import':183 'includ':194 'infect':692,788,847,895,952,1041 'inform':1271 'initi':2324 'instal':10,16 'insuffici':164 'integ':1985 'invalid':160 'invoic':669 'item':377 'ivr':2339 'key':28,31,39,92,149,162,243,292,337,375,389,440,477,525,576,616,663,769,837,937,1031,1091,1136,1168,1255,1290,1320,1355,1432,1503,1571,1635,1707,1757,1807,1866,1931,2023,2130,2232,2304,2360,2398,2431,2467 'kon':2148 'last':2053,2088,2140,2188,2262 'limit':53,136,178,300 'link':597,601,629,633,735,1001,1008,1099 'linux':19 'list':206,324,594,598,643,646,1242,1308,1685,1689,1787,1790,2003,2009,2284,2291 'local':1204,1368,1827,1833,1886,1892,2056,2094,2154,2191,2265 'maco':18 'met':1225,1994 'meta.total':223 'method':2347,2371,2381 'minut':741 'mrc':261 'multipl':365 'must':187,733,1013 'n':79 'name':264,314,1724,1774,2034,2049,2054,2087,2089,2091,2138,2141,2144,2169,2184,2189,2243,2258,2263 'nation':1834,1893 'navig':220 'neighborhood':2058,2109,2193,2267 'network':50 'new':1326 'note':184 'number':3,7,186,213,1149,1202,1211,1214,1233,1245,1261,1264,1301,1335,1366,1391,1453,1529,1592,1661,1830,1889,1912,1967,1975,1979,1983,2061,2112,2196,2270,2287,2294,2310,2316,2322,2326,2337,2345,2368,2378,2386,2390,2404,2410,2417,2421,2437,2443,2453,2482,2488 'o':2147 'object':302,346,354,379,403,411,447,486,494,534,542,716,812,871,919,976,1065,1223,1273,1277,1307,1345,1400,1462,1493,1538,1601,1670,1714,1764,1843,1902,1981,1992 'option':373,750,889,1338,1486,2097,2348 'order':602,649,1150,1206,1234,1370,1693,1817,1876,1913,1968,1970 'page':212,215,221,224 'pagin':205,209,323,1797,2290 'paramet':218 'parenthes':204 'patch':886,931,1483,1497 'pend':693,719,789,815,848,874,896,922,953,979,1042,1068,1406,1468,1544,1607,1676 'pending-approv':1405,1467,1543,1606,1675 'permiss':165 'phone':185,1148,1210,1213,1244,1260,1263,1300,1334,1365,1390,1452,1528,1591,1660,1829,1888,1974,1978,1982,2060,2111,2195,2269,2309,2321,2325,2344,2367,2377,2389,2403,2420,2436,2452,2481 'port':1818,1877 'post':83,371,383,748,763,1151,1162,1329,1349,1622,1629,1914,1925,2083,2124,2341,2354,2450,2461 'postal':2063,2114,2198,2272 'pre':15,1107 'pre-instal':14 'pre-sign':1106 'prefix':196 'price':262 'prior':1016 'procedur':2328 'product':66 'public':259,312 'queri':217 'rate':52,135,177 'record':630,637,710,806,865,913,970,1059,1217,1267,1394,1456,1532,1595,1664,1726,1776,1837,1855,1896,1986,2066,2201,2275,2312,2406,2439,2484 'ref':777 'ref001':673 'ref002':674 'refer':671,704,752,775,800,859,907,964,1053,1340,1386,1448,1488,1524,1587,1656,1960,2043,2104,2178,2252 'region':1270 'regulatori':1220,1238,1274,1279,1304,1342,1397,1459,1490,1535,1598,1667,1989 'request':1207,1971,2320 'requir':129,1144,1155,1156,1175,1221,1224,1227,1239,1275,1280,1305,1309,1327,1331,1343,1398,1418,1460,1478,1481,1491,1536,1555,1599,1618,1668,1687,1691,1739,1743,1789,1792,1840,1850,1854,1899,1907,1918,1919,1938,1990,1993,2085,2343,2455 'resourc':167,352,409,492,540,552,555,586,588,634 'respons':74,75,108,113,227 'result':210 'retri':137,179 'retriev':228,458,553,821,824,1237,1278,1737,1741,1847,1851,2210,2214,2383 'return':208,247,296,341,398,422,444,481,529,580,620,686,782,841,946,1035,1140,1187,1259,1294,1374,1436,1512,1575,1644,1711,1761,1811,1870,1950,2007,2027,2162,2236,2308,2376,2402,2435,2480 'scan':688,691,694,696,784,787,790,792,843,846,849,851,891,894,897,899,948,951,954,956,1037,1040,1043,1045 'sed':114 'servic':738,1004,1011 'setup':23 'sha256':713,809,868,916,973,1062 'sign':1108 'singl':277,1417 'size':216,715,811,870,918,975,1064 'skill' 'skill-telnyx-numbers-compliance-curl' 'skip':2117 'sleep':140 'slug':266,316 'sms':2372 'sort':684,1795 'source-team-telnyx' 'space':201 'spec':268 'status':71,689,717,785,813,844,872,892,920,949,977,1038,1066,1228,1230,1401,1463,1539,1602,1671,1996 'storag':1121 'street':2069,2092,2149,2204,2278 'string':250,255,265,267,270,305,315,317,452,587,590,623,632,636,639,642,699,702,705,707,712,714,724,753,757,759,795,798,801,803,808,810,820,854,857,860,862,867,869,879,902,905,908,910,915,917,927,959,962,965,967,972,974,984,1048,1051,1054,1056,1061,1063,1073,1193,1205,1212,1216,1219,1229,1231,1262,1266,1269,1296,1299,1303,1341,1376,1379,1387,1389,1393,1396,1438,1441,1449,1451,1455,1458,1489,1514,1517,1525,1527,1531,1534,1577,1580,1588,1590,1594,1597,1646,1649,1657,1659,1663,1666,1717,1719,1721,1725,1728,1736,1767,1769,1771,1775,1778,1786,1821,1824,1828,1839,1846,1880,1883,1887,1898,1905,1953,1961,1977,1988,1997,2030,2032,2035,2038,2041,2044,2047,2050,2055,2057,2059,2062,2065,2068,2071,2074,2100,2102,2105,2108,2110,2113,2116,2165,2167,2170,2173,2176,2179,2182,2185,2190,2192,2194,2197,2200,2203,2206,2209,2239,2241,2244,2247,2250,2253,2256,2259,2264,2266,2268,2271,2274,2277,2280,2283,2311,2319,2350,2379,2382,2405,2413,2438,2446,2483,2491 'sub':1232,1911,1966 'submit':1616,2447 'success':122 'support':2329 'system':2340 't00':681 'tail':109 'telnyx':2,6,26,37,90,147,241,290,335,387,438,475,523,574,614,661,767,835,935,1029,1089,1134,1166,1253,1288,1318,1353,1430,1501,1569,1633,1705,1755,1805,1864,1929,2021,2128,2230,2302,2358,2396,2429,2465 'telnyx-numbers-compliance-curl':1 'temporari':1097,1105 'text':11,103 'textual':1733,1783 'time':1197,1384,1414,1446,1476,1522,1552,1585,1615,1654,1684,1958,2002 'toll':1835,1894 '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' 'toy':2146 'toy-o':2145 'type':96,393,589,631,638,698,711,794,807,853,866,901,914,941,958,971,1047,1060,1172,1215,1218,1265,1268,1302,1336,1359,1367,1392,1395,1454,1457,1507,1530,1533,1593,1596,1639,1662,1665,1688,1692,1727,1729,1740,1744,1777,1779,1831,1838,1841,1890,1897,1900,1935,1976,1987,2067,2134,2202,2276,2313,2364,2407,2440,2471,2485 'unapprov':1404,1466,1542,1605,1674 'unlink':1015 'unus':419 'updat':355,412,495,543,591,640,722,818,877,880,883,925,982,1071,1143,1410,1472,1477,1548,1611,1680,1734,1784,1844,1903,1906,1998,2072,2207,2281 'upload':725,728,731 'uri':1142 'url':758,1109,1141 'us':1364,2158 'use':36,211,430,1113 'user':319,326,358,362,366,370,415,420,424,448,454,460,467,498,502,506,513,546,550,558,565,2005,2012,2077,2081,2212,2220 'uuid':257,310,351,360,376,408,417,491,500,539,548,585,626,628,709,805,864,912,969,1058,1190,1199,1209,1236,1723,1773,1826,1885,1963,1973,2052,2187,2261 'valid':55,126,171 'valu':1479 'verif':2119,2323,2327,2346,2370,2380,2448,2456,2474 'verifi':720,816,875,923,980,1069,2286,2293,2315,2317,2385,2409,2411,2416,2442,2444,2487,2489 'voic':2334 'w':78 'window':21 'within':739 'without':1123 'x':82,382,518,762,930,1024,1161,1348,1496,1564,1628,1924,2123,2353,2424,2460","prices":[{"id":"09887b6b-a97f-4652-9046-c2698881cbe0","listingId":"322c662d-8e65-4f48-8b1c-b4f643b93e13","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:07:02.456Z"}],"sources":[{"listingId":"322c662d-8e65-4f48-8b1c-b4f643b93e13","source":"github","sourceId":"team-telnyx/ai/telnyx-numbers-compliance-curl","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-numbers-compliance-curl","isPrimary":false,"firstSeenAt":"2026-04-18T22:07:02.456Z","lastSeenAt":"2026-04-22T06:54:41.334Z"}],"details":{"listingId":"322c662d-8e65-4f48-8b1c-b4f643b93e13","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-numbers-compliance-curl","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":"13b9b07f7fd5f404b26e06c4e347c860078308af","skill_md_path":"skills/telnyx-numbers-compliance-curl/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-numbers-compliance-curl"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-numbers-compliance-curl","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-numbers-compliance-curl"},"updatedAt":"2026-04-22T06:54:41.334Z"}}