Ant Media Push Notification API

The Push Notification API from Ant Media — 3 operation(s) for push notification.

Operations 3

GET /v2/push-notification/subscriber-auth-token #
POST /v2/push-notification/subscribers #
POST /v2/push-notification/topics/{topic} #

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/ant-media-push-notification-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

ant-media-push-notification-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ant Media Server REST API Reference Broadcasts Push Notification API
  description: Ant Media Server REST API Reference
  contact:
    name: Ant Media Info
    url: https://antmedia.io
    email: contact@antmedia.io
  license:
    name: Apache 2.0
    url: http://www.apache.org
  version: V2.0
servers:
- url: https://test.antmedia.io:5443/Sandbox/rest/
  description: test server
tags:
- name: Push Notification
paths:
  /v2/push-notification/subscriber-auth-token:
    get:
      operationId: getSubscriberAuthenticationToken
      parameters:
      - name: subscriberId
        in: query
        schema:
          type: string
      - name: timeoutSeconds
        in: query
        schema:
          type: integer
          format: int32
      responses:
        default:
          description: default response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result'
      tags:
      - Push Notification
  /v2/push-notification/subscribers:
    post:
      operationId: sendPushNotification
      parameters:
      - name: serviceName
        in: query
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PushNotificationToSubscribers'
      responses:
        default:
          description: default response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result'
      tags:
      - Push Notification
  /v2/push-notification/topics/{topic}:
    post:
      operationId: sendPushNotification_1
      parameters:
      - name: topic
        in: path
        required: true
        schema:
          type: string
      - name: serviceName
        in: query
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: string
      responses:
        default:
          description: default response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result'
      tags:
      - Push Notification
components:
  schemas:
    Result:
      type: object
      properties:
        success:
          type: boolean
          description: The result of the operation
        message:
          type: string
          description: The message of the operation result
        dataId:
          type: string
          description: The id of the record if operation is about adding a record
        errorId:
          type: integer
          description: The id of error of the operation result
          format: int32
      description: The basic result class
    PushNotificationToSubscribers:
      type: object
      properties:
        subscribers:
          type: array
          items:
            type: string
        jsonMessage:
          type: string
externalDocs:
  url: https://antmedia.io