Twilio SipDomains API

The SipDomains API from Twilio — 1 operation(s) for sipdomains.

Operations 2

POST /v2/SipDomains/{SipDomain} #
GET /v2/SipDomains/{SipDomain} #

Documentation

Specifications

Other Resources

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/twilio-sipdomains-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 email required.

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

OpenAPI Specification

twilio-sipdomains-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Twilio - Routes Sip Domains API
  description: This is the public Twilio REST API.
  termsOfService: https://www.twilio.com/legal/tos
  contact:
    name: Twilio Support
    url: https://support.twilio.com
    email: support@twilio.com
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.52.0
servers:
- url: https://routes.twilio.com
tags:
- name: SipDomains
paths:
  /v2/SipDomains/{SipDomain}:
    servers:
    - url: https://routes.twilio.com
    description: 'TODO: Resource-level docs'
    x-twilio:
      defaultOutputProperties:
      - sid
      - friendly_name
      - date_created
      pathType: instance
    post:
      description: ''
      tags:
      - SipDomains
      parameters:
      - name: SipDomain
        in: path
        description: ''
        schema:
          type: string
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/routes.v2.sip_domain'
          description: OK
      security:
      - accountSid_authToken: []
      operationId: UpdateSipDomain
      x-maturity:
      - GA
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/UpdateSipDomainRequest'
    get:
      description: ''
      tags:
      - SipDomains
      parameters:
      - name: SipDomain
        in: path
        description: ''
        schema:
          type: string
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/routes.v2.sip_domain'
          description: OK
      security:
      - accountSid_authToken: []
      operationId: FetchSipDomain
      x-maturity:
      - GA
components:
  schemas:
    routes.v2.sip_domain:
      type: object
      properties:
        sip_domain:
          type:
          - string
          - 'null'
        url:
          type:
          - string
          - 'null'
          format: uri
        sid:
          type:
          - string
          - 'null'
          minLength: 34
          maxLength: 34
          pattern: ^QQ[0-9a-fA-F]{32}$
        account_sid:
          type:
          - string
          - 'null'
          minLength: 34
          maxLength: 34
          pattern: ^AC[0-9a-fA-F]{32}$
        friendly_name:
          type:
          - string
          - 'null'
        voice_region:
          type:
          - string
          - 'null'
        date_created:
          type:
          - string
          - 'null'
          format: date-time
        date_updated:
          type:
          - string
          - 'null'
          format: date-time
    UpdateSipDomainRequest:
      type: object
      properties:
        VoiceRegion:
          type: string
          description: ''
        FriendlyName:
          type: string
          description: ''
  securitySchemes:
    accountSid_authToken:
      type: http
      scheme: basic
x-maturity:
- name: GA
  description: This product is Generally Available.