Unifonic Number Masking API

The Number Masking API from Unifonic — 3 operation(s) for number masking.

Operations 5

GET /providers/masks Retrieves all masking sessions #
POST /providers/masks Creates a Two Way Number Masking Session #
POST /providers/config/masks Creates a One Way Number Masking Session #
GET /providers/{maskId} Retrieves details of a specific masking session #
DELETE /providers/{maskId} Deactivates a specific masking session #

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-number-masking-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-number-masking-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Unifonic Authenticate Call Management and Status Number Masking 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: Number Masking
paths:
  /providers/masks:
    get:
      operationId: retrieveAllMaskingSessions
      summary: Retrieves all masking sessions
      description: This operation retrieves a list of all masking sessions
      tags:
      - Number Masking
      parameters:
      - name: toDate
        description: date ending with
        required: false
        in: query
        schema:
          type: string
      - name: fromDate
        description: date starting with
        required: false
        in: query
        schema:
          type: integer
      - name: sort
        description: asc or desc
        required: true
        in: query
        schema:
          type: integer
      - name: status
        description: active or inactive
        required: false
        in: query
        schema:
          type: integer
      - name: appsId
        description: applicationId found on Unifonic Console
        required: true
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json;charset=utf-8:
              schema:
                $ref: '#/components/schemas/Get_Masking_Sessions'
    post:
      operationId: createTwoWayNumberMaskingSession
      summary: Creates a Two Way Number Masking Session
      description: This operation creates a Number Masking session for two parties.
      tags:
      - Number Masking
      parameters:
      - name: appsId
        description: applicationId found on Unifonic Console
        required: true
        in: header
        schema:
          type: string
      requestBody:
        content:
          application/json;charset=utf-8:
            schema:
              $ref: '#/components/schemas/Two_Way_Masking_Session_Create'
        description: The parties in a number masking session
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json;charset=utf-8:
              schema:
                $ref: '#/components/schemas/Create_Masking_Session_Response'
  /providers/config/masks:
    post:
      operationId: createOneWayNumberMaskingSession
      summary: Creates a One Way Number Masking Session
      description: This operation creates a Number Masking session for one party.
      tags:
      - Number Masking
      parameters:
      - name: appsId
        description: applicationId found on Unifonic Console
        required: true
        in: header
        schema:
          type: string
      requestBody:
        content:
          application/json;charset=utf-8:
            schema:
              $ref: '#/components/schemas/One_Way_Masking_Session_Create'
        description: The parties in a number masking session
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json;charset=utf-8:
              schema:
                $ref: '#/components/schemas/Create_Masking_Session_Response'
  /providers/{maskId}:
    get:
      operationId: retrieveSpecificMaskingSession
      summary: Retrieves details of a specific masking session
      description: This operation list or find UsageSpecification entities
      tags:
      - Number Masking
      parameters:
      - name: maskId
        description: Identifier of the specific Number Masking Session
        required: true
        in: path
        schema:
          type: string
      - name: appsId
        description: applicationId found on Unifonic Console
        required: true
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json;charset=utf-8:
              schema:
                $ref: '#/components/schemas/Create_Masking_Session_Response'
    delete:
      operationId: deactivatesNumberMaskingSession
      summary: Deactivates a specific masking session
      description: This operation deactivates a Masking Session. Parties can no longer contact each other after this operation.
      tags:
      - Number Masking
      parameters:
      - name: maskId
        description: Identifier of the Masking Session to be deleted
        required: true
        in: path
        schema:
          type: string
      - name: appsId
        description: applicationId found on Unifonic Console
        required: true
        in: header
        schema:
          type: string
      responses:
        '204':
          description: Success
components:
  schemas:
    Create_Masking_Session_Response:
      type: object
      required:
      - maskId
      - callerId
      - status
      - timeCreation
      - timeDeactivation
      - timeExpiry
      - requestBody
      properties:
        maskId:
          type: string
          description: identifier of the masking session
        callerId:
          type: string
          description: callerId used for this masking session
        secondaryCallerId:
          type: string
          description: secondary callerId to be used for this masking session
        status:
          type: string
          description: status of this masking session - active or inactive
        timeCreation:
          type: string
          description: date and time of which this session was created
        timeExpiry:
          type: string
          description: data and time of which this session will expire
        timeDeactivation:
          type: string
          description: date and time of which this session was deactivated
        requestBody:
          type: string
          description: payload which was accepted
    Get_Masking_Sessions:
      type: object
      description: all masking sessions in scope
      properties:
        content:
          type: array
          items:
            $ref: '#/components/schemas/Create_Masking_Session_Response'
    One_Way_Masking_Session_Create:
      type: object
      description: payload for creating a number masking session
      required:
      - to
      properties:
        to:
          type: string
          example: '+966555000000'
          description: party A of a number masking session
    Two_Way_Masking_Session_Create:
      type: object
      description: payload for creating a number masking session
      required:
      - to
      - from
      properties:
        to:
          type: string
          example: '+966555000000'
          description: party A of a number masking session
        from:
          type: string
          example: '+966555000001'
          description: party B of a number masking session
  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