Telnyx Integrations API

The Integrations API from Telnyx — 4 operation(s) for integrations.

Operations 5

GET /ai/integrations List Integrations #
GET /ai/integrations/connections List User Integrations #
DELETE /ai/integrations/connections/{user_connection_id} Delete Integration Connection #
GET /ai/integrations/connections/{user_connection_id} Get User Integration connection By Id #
GET /ai/integrations/{integration_id} List Integration By Id #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/telnyx-integrations-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

telnyx-integrations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: support@telnyx.com
  description: Telnyx provides global communications and connectivity APIs for developers — including SIP trunking, programmable voice, SMS, MMS, WhatsApp Business Messaging, Call Control, Fax, Wireless (IoT & eSIM), Phone Numbers (DID provisioning & porting), Emergency Services, and Network APIs for private interconnects and edge connectivity. Build, scale, and manage voice, messaging, and data networks with Telnyx's carrier-grade global infrastructure and API-first platform.
  title: Telnyx Integrations API
  version: 2.0.0
  x-endpoint-cost: light
servers:
- description: Version 2.0.0 of the Telnyx API
  url: https://api.telnyx.com/v2
security:
- bearerAuth: []
tags:
- name: Integrations
paths:
  /ai/integrations:
    get:
      description: List all available integrations.
      operationId: list_integrations_public_integrations_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntegrationsListResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      summary: List Integrations
      tags:
      - Integrations
      x-latency-category: responsive
  /ai/integrations/connections:
    get:
      description: List user setup integrations
      operationId: list_user_integrations_public_integrations_connections_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntegrationConnectionsListResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      summary: List User Integrations
      tags:
      - Integrations
      x-latency-category: responsive
  /ai/integrations/connections/{user_connection_id}:
    delete:
      description: Delete a specific integration connection.
      operationId: delete_integration_connection
      parameters:
      - description: The user integration connection identifier
        in: path
        name: user_connection_id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content - Integration connection deleted successfully
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      summary: Delete Integration Connection
      tags:
      - Integrations
      x-latency-category: responsive
    get:
      description: Get user setup integrations
      operationId: get_user_integration_by_id_public_integrations_connections__user_connection_id__get
      parameters:
      - description: The connection id
        in: path
        name: user_connection_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntegrationConnectionResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      summary: Get User Integration connection By Id
      tags:
      - Integrations
      x-latency-category: responsive
  /ai/integrations/{integration_id}:
    get:
      description: Retrieve integration details
      operationId: list_integration_by_id_public_integrations__integration_id__get
      parameters:
      - description: The integration id
        in: path
        name: integration_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Integration'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      summary: List Integration By Id
      tags:
      - Integrations
      x-latency-category: responsive
components:
  schemas:
    IntegrationConnection:
      properties:
        allowed_tools:
          items:
            type: string
          title: Allowed Tools
          type: array
        id:
          title: Id
          type: string
        integration_id:
          title: Integration Id
          type: string
      required:
      - id
      - integration_id
      - allowed_tools
      title: IntegrationConnection
      type: object
    Integration:
      properties:
        available_tools:
          items:
            type: string
          title: Available Tools
          type: array
        description:
          title: Description
          type: string
        display_name:
          title: Display Name
          type: string
        id:
          title: Id
          type: string
        logo_url:
          title: Logo Url
          type: string
        name:
          title: Name
          type: string
        status:
          enum:
          - disconnected
          - connected
          title: Status
          type: string
      required:
      - id
      - name
      - display_name
      - description
      - logo_url
      - status
      - available_tools
      title: Integration
      type: object
    IntegrationConnectionResponse:
      properties:
        data:
          $ref: '#/components/schemas/IntegrationConnection'
      required:
      - data
      title: IntegrationConnectionResponse
      type: object
    IntegrationConnectionsListResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/IntegrationConnection'
          title: Data
          type: array
      required:
      - data
      title: IntegrationConnectionsListResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
      - loc
      - msg
      - type
      title: ValidationError
      type: object
    IntegrationsListResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/Integration'
          title: Data
          type: array
      required:
      - data
      title: IntegrationsListResponse
      type: object
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http
    branded-calling_bearerAuth:
      description: API key passed as a Bearer token in the Authorization header
      scheme: bearer
      type: http
    oauthClientAuth:
      description: OAuth 2.0 authentication for Telnyx API and MCP integrations
      flows:
        authorizationCode:
          authorizationUrl: https://api.telnyx.com/v2/oauth/authorize
          refreshUrl: https://api.telnyx.com/v2/oauth/token
          scopes:
            admin: Administrative access to Telnyx resources
          tokenUrl: https://api.telnyx.com/v2/oauth/token
        clientCredentials:
          scopes:
            admin: Administrative access to Telnyx resources
          tokenUrl: https://api.telnyx.com/v2/oauth/token
      type: oauth2
    outbound-voice-profiles_bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http
    pronunciation-dicts_bearerAuth:
      description: Telnyx API v2 key. Obtain from https://portal.telnyx.com
      scheme: bearer
      type: http
    stored-payment-transactions_bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http