Twilio Alpha Senders API

Manage alphanumeric sender IDs

Operations 2

GET /Services/{ServiceSid}/AlphaSenders Twilio List Alpha Senders in a Messaging Service #
POST /Services/{ServiceSid}/AlphaSenders Twilio Add an Alpha Sender to a Messaging Service #

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-alpha-senders-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-alpha-senders-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Twilio Messaging Alpha Senders API
  description: Send and receive SMS and MMS messages globally using Twilio's Messaging API. Supports programmable messaging, messaging services, alphanumeric sender IDs, A2P 10DLC registration, toll-free verification, and link shortening.
  version: '2.0'
  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
  termsOfService: https://www.twilio.com/legal/tos
servers:
- url: https://api.twilio.com/2010-04-01
  description: Twilio REST API v1
- url: https://messaging.twilio.com/v1
  description: Twilio Messaging Service API
security:
- accountSid_authToken: []
tags:
- name: Alpha Senders
  description: Manage alphanumeric sender IDs
paths:
  /Services/{ServiceSid}/AlphaSenders:
    get:
      operationId: listAlphaSenders
      summary: Twilio List Alpha Senders in a Messaging Service
      tags:
      - Alpha Senders
      parameters:
      - $ref: '#/components/parameters/ServiceSid'
      responses:
        '200':
          description: List of alpha senders
          content:
            application/json:
              schema:
                type: object
                properties:
                  alpha_senders:
                    type: array
                    items:
                      $ref: '#/components/schemas/AlphaSender'
    post:
      operationId: addAlphaSender
      summary: Twilio Add an Alpha Sender to a Messaging Service
      tags:
      - Alpha Senders
      parameters:
      - $ref: '#/components/parameters/ServiceSid'
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
              - AlphaSender
              properties:
                AlphaSender:
                  type: string
                  description: Alphanumeric sender ID string (max 11 characters)
                  maxLength: 11
      responses:
        '201':
          description: Alpha sender added
        '400':
          description: Invalid request
components:
  parameters:
    ServiceSid:
      name: ServiceSid
      in: path
      required: true
      description: The unique identifier of the messaging service
      schema:
        type: string
        pattern: ^MG[0-9a-fA-F]{32}$
  schemas:
    AlphaSender:
      type: object
      properties:
        sid:
          type: string
          pattern: ^AI[0-9a-fA-F]{32}$
        alpha_sender:
          type: string
          description: Alphanumeric sender ID
        capabilities:
          type: array
          items:
            type: string
        date_created:
          type: string
          format: date-time
  securitySchemes:
    accountSid_authToken:
      type: http
      scheme: basic
      description: Use your Twilio Account SID as the username and Auth Token as the password for HTTP Basic authentication.
externalDocs:
  description: Twilio Messaging API Documentation
  url: https://www.twilio.com/docs/messaging/api