Unifonic Wrapper API

The Wrapper API from Unifonic — 2 operation(s) for wrapper.

Operations 2

POST /wrapper/msgQuery Get msgQuery #
POST /wrapper/sendSMS.php Send message #

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/unifonic-wrapper-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

unifonic-wrapper-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Unifonic Authenticate Call Management and Status Wrapper API
  description: Handles verifications with OTP to multiple channels
  contact:
    name: Unifonic Support
    url: support.unifonic.com/
    email: support@unifonic.com
  version: 2.0.0
servers:
- url: https://authenticate.cloud.api.unifonic.com
  variables: {}
security:
- authenticate-app-id: []
  Authorization: []
tags:
- name: Wrapper
  description: ''
paths:
  /wrapper/msgQuery:
    post:
      description: Unifonic Get message query API allows you to get details of specified message.
      summary: Get msgQuery
      tags:
      - Wrapper
      operationId: GetmsgQuery
      deprecated: false
      parameters:
      - name: appsid
        in: query
        required: true
        description: A character string that uniquely identifies your app
        schema:
          type: string
      - name: msgid
        in: query
        required: true
        description: A unique ID that identifies a message
        schema:
          type: integer
          format: int64
      - name: to
        in: query
        required: false
        description: 'Destination mobile number, mobile numbers must be in international format without 00 or + Example: (966000000000)'
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMessageQueryresponse'
              examples:
                response:
                  value:
                    STATUS05: The message has been sent successfully
        '401':
          description: Authentication failed
          content:
            application/json:
              schema: {}
        '402':
          description: Missing parameter AppSid
          content:
            application/json:
              schema: {}
        '432':
          description: MessageId must be numeric
          content:
            application/json:
              schema: {}
        '452':
          description: User must specify either messageId or recipient parameter
          content:
            application/json:
              schema: {}
  /wrapper/sendSMS.php:
    post:
      description: Unifonic Send Wrapper API allows you to send  text messages to  multiple users at the same time
      summary: Send message
      tags:
      - Wrapper
      operationId: PostSendmessage
      deprecated: false
      parameters:
      - name: appsid
        in: query
        required: true
        description: A character string that uniquely identifies your app
        schema:
          type: string
      - name: msg
        in: query
        required: true
        description: Message body supports both English and unicodes characters, concatenated messages is supported
        schema:
          type: string
      - name: to
        in: query
        required: true
        description: 'Destination mobile number, mobile numbers must be in international format without 00 or + Example: (966000000000)'
        schema:
          type: integer
          format: int64
      - name: sender
        in: query
        required: true
        description: The SenderID to send from, App default SenderID is used unless else stated
        schema:
          type: string
      - name: baseEncode
        in: query
        required: false
        description: Binary-to-text encoding schemes that represent binary data in an ASCII string format
        schema:
          type: boolean
          default: false
      - name: encoding
        in: query
        required: false
        description: Converts information from a source into symbols for communication or storage, GSM7 for English and UCS2 for Arabic
        schema:
          type: string
          default: UCS2
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SendWrapperresponse'
              examples:
                response:
                  value:
                    Error: '0'
                    MessageID: '2000000140226'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema: {}
        '402':
          description: Missing parameter AppSid
          content:
            application/json:
              schema: {}
        '459':
          description: Authentication parameters are incorrectly base64 encoded
          content:
            application/json:
              schema: {}
components:
  schemas:
    SendWrapperresponse:
      title: SendWrapperresponse
      description: Sends message to one or more recipients.
      example:
        Error: '0'
        MessageID: '3200017901931'
      type: object
      properties:
        Error:
          description: The default error code
          example: '0'
          type: string
        MessageID:
          description: A unique ID that identifies a message
          example: '3200017901931'
          type: string
      required:
      - Error
      - MessageID
    GetMessageQueryresponse:
      title: GetMessageQueryresponse
      description: Gets details of specified message
      example:
        STATUS05: The message has been sent successfully
      type: object
      properties:
        STATUS05:
          description: The message statues
          example: '"The message has been sent successfully"'
          type: string
      required:
      - STATUS05
  securitySchemes:
    authenticate-app-id:
      type: apiKey
      name: x-authenticate-app-id
      in: header
    Authorization:
      type: apiKey
      description: Bearer Auth Token
      name: Authorization
      in: header
x-readme:
  explorer-enabled: true
  proxy-enabled: true