Bharti Airtel Individual SMS APIs API

These APIs can be used to send a single SMS in a single request as documented below

Operations 2

GET /api/v1/send-sms Send Single SMS GET API #
POST /api/v1/send-sms Send Single SMS POST API #

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/bharti-airtel-individual-sms-apis-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

bharti-airtel-individual-sms-apis-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Airtel IQ SMS Core Individual SMS APIs API
  description: These APIs can be used to send a single SMS in a single request as documented below
servers:
- url: https://iqsms.airtel.in/
tags:
- name: Individual SMS APIs
  description: These APIs can be used to send a single SMS in a single request as documented below
paths:
  /api/v1/send-sms:
    get:
      tags:
      - Individual SMS APIs
      summary: Send Single SMS GET API
      description: This API can be used to send SMS to single destination address through GET request
      operationId: sendSmsUsingGET
      parameters:
      - name: customerId
        in: query
        description: Specifies the source/client's id registered and wants to use the SMS APIs
        required: false
        allowEmptyValue: false
        schema:
          type: string
      - name: destinationAddress
        in: query
        description: Specifies the mobile numbers on which message needs to be delivered
        required: false
        allowEmptyValue: false
        schema:
          type: string
      - name: dltTemplateId
        in: query
        description: Specifies the template id received after dlt registration.
        required: false
        allowEmptyValue: false
        schema:
          type: string
      - name: entityId
        in: query
        description: Specifies the entity id received after dlt registration.
        required: false
        allowEmptyValue: false
        schema:
          type: string
      - name: filterBlacklistNumbers
        in: query
        description: Specifies the flag to enable/disable filtering of blacklisted numbers
        required: false
        allowEmptyValue: false
        schema:
          type: boolean
      - name: message
        in: query
        description: Specifies the message which needs to be delivered
        required: false
        allowEmptyValue: false
        schema:
          type: string
      - name: messageType
        in: query
        description: Specifies the type of message which needs to be sent.
        required: false
        allowEmptyValue: false
        schema:
          type: string
          enum:
          - PROMOTIONAL
          - TRANSACTIONAL
          - SERVICE_IMPLICIT
          - SERVICE_EXPLICIT
          - INTERNATIONAL
      - name: metaMap
        in: query
        description: Specifies url Shortener params and all the additional parameters
        required: false
        allowEmptyValue: false
        schema:
          type: object
      - name: priority
        in: query
        description: Specifies the flag for priority of the messages
        required: false
        allowEmptyValue: false
        schema:
          type: boolean
      - name: sourceAddress
        in: query
        description: Specifies the shortcode/senderId through which message would be sent
        required: false
        allowEmptyValue: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SendSmsResponseVO'
      deprecated: false
    post:
      tags:
      - Individual SMS APIs
      summary: Send Single SMS POST API
      description: This API can be used to send SMS to a single destination address through POST request
      operationId: sendSmsUsingPOST_2
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SendSmsResponseVO'
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SingleSmsRequestVO'
        description: singleSendSmsRequestVo
        required: true
components:
  schemas:
    UrlShortenerParams:
      type: object
      properties:
        campaignId:
          type: string
          description: campaign id
        campaignName:
          type: string
          description: campaign name
        campaignType:
          type: string
          description: campaign type
        hitsAllowed:
          type: integer
          format: int32
          description: No of hits allowed for the url
        isEnabled:
          type: string
          example: 'false'
          description: flag to check if convert to short url
        isUniqueUrl:
          type: string
          example: 'false'
          description: flag to create unique url for each request
        metaData:
          type: object
          description: url shortener meta data
        shortCode:
          type: string
          description: short code provided by client
        systemMetaData:
          type: object
          description: url shortener system meta data
        validity:
          type: integer
          format: int32
          description: validity for which the url will be active
      title: UrlShortenerParams
    SingleSmsRequestVO:
      type: object
      required:
      - customerId
      - dltTemplateId
      - entityId
      - message
      - messageType
      - sourceAddress
      properties:
        customerId:
          type: string
          description: Specifies the source/client's id registered and wants to use the SMS APIs
        destinationAddress:
          type: string
          description: Specifies the mobile numbers on which message needs to be delivered
        dltTemplateId:
          type: string
          description: Specifies the template id received after dlt registration.
        entityId:
          type: string
          description: Specifies the entity id received after dlt registration.
        filterBlacklistNumbers:
          type: boolean
          example: false
          description: Specifies the flag to enable/disable filtering of blacklisted numbers
        message:
          type: string
          description: Specifies the message which needs to be delivered
        messageType:
          type: string
          description: Specifies the type of message which needs to be sent.
          enum:
          - PROMOTIONAL
          - TRANSACTIONAL
          - SERVICE_IMPLICIT
          - SERVICE_EXPLICIT
        metaData:
          type: object
          description: Specifies all the additional parameters
        priority:
          type: boolean
          example: false
          description: Specifies the flag for priority of the messages
        sourceAddress:
          type: string
          description: Specifies the shortcode/senderId through which message would be sent
        urlShortenerParams:
          description: Specifies the parameters to convert long url to short
          $ref: '#/components/schemas/UrlShortenerParams'
      title: SingleSmsRequestVO
    SendSmsResponseVO:
      type: object
      properties:
        customerId:
          type: string
          description: Specifies the source/client's id registered and wants to use the SMS APIs
        destinationAddress:
          type: array
          description: Specifies the mobile numbers on which message requests were submitted
          items:
            type: string
        dltTemplateId:
          type: string
          description: Specifies the template id received after dlt registration.
        entityId:
          type: string
          description: Specifies the entity id received after dlt registration.
        errorMessage:
          type: string
          description: Specifies the error message if received any during sms request
        incorrectNum:
          type: array
          description: Specifies incorrect numbers in request (less than 10 digit numbers)
          items:
            type: string
        message:
          type: string
          description: Specifies the message for which request was received
        messageRequestId:
          type: string
          description: Specifies unique message request id
        messageType:
          type: string
          description: Specifies the type of message sent.
          enum:
          - PROMOTIONAL
          - TRANSACTIONAL
          - SERVICE_IMPLICIT
          - SERVICE_EXPLICIT
        metaData:
          type: object
          description: Specifies the additional information received with each sms
        sourceAddress:
          type: string
          description: Specifies the shortcode/senderId through which message was sent
      title: SendSmsResponseVO