30MHz Admin API

The admin API from 30MHz — 6 operation(s) for admin.

Operations 6

GET /admin/health/api-build-version Returns the API build version #
GET /admin/health/auth0 Returns the Auth0 health #
GET /admin/health/dynamodb Returns the DynamoDB health #
GET /admin/health/elasticsearch Returns the Elasticsearch health #
GET /admin/health/scheduler Returns the Scheduler health #
DELETE /admin/notification-follow/user/{email} Delete all notification follows of a user (i.e. #

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/30mhz-admin-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

30mhz-admin-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '2.0'
  title: ZENSIE Admin API
servers:
- url: https://api.30mhz.com/api
tags:
- name: Admin
paths:
  /admin/health/api-build-version:
    get:
      tags:
      - Admin
      summary: Returns the API build version
      description: The authenticated user must be an administrator.
      operationId: getApiBuildVersion
      security:
      - Bearer: []
      responses:
        '200':
          description: Returns the API build version.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result'
            application/zensie-v2+json:
              schema:
                $ref: '#/components/schemas/Result'
        '403':
          description: Unauthorized to perform the operation. User has to be admin.
      x-admin-only: true
  /admin/health/auth0:
    get:
      tags:
      - Admin
      summary: Returns the Auth0 health
      description: The authenticated user must be an administrator.
      operationId: getAuth0Health
      security:
      - Bearer: []
      responses:
        '200':
          description: Return the health of Auth0
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result'
            application/zensie-v2+json:
              schema:
                $ref: '#/components/schemas/Result'
        '403':
          description: Unauthorized to perform the operation. User has to be admin.
      x-admin-only: true
  /admin/health/dynamodb:
    get:
      tags:
      - Admin
      summary: Returns the DynamoDB health
      description: The authenticated user must be an administrator.
      operationId: getDynamoDbHealth
      security:
      - Bearer: []
      responses:
        '200':
          description: Return the list of sales statistics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result'
            application/zensie-v2+json:
              schema:
                $ref: '#/components/schemas/Result'
        '403':
          description: Unauthorized to perform the operation. User has to be admin.
      x-admin-only: true
  /admin/health/elasticsearch:
    get:
      tags:
      - Admin
      summary: Returns the Elasticsearch health
      description: The authenticated user must be an administrator.
      operationId: getElasticsearchHealth
      security:
      - Bearer: []
      responses:
        '200':
          description: Returns the Elasticsearch health.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result'
            application/zensie-v2+json:
              schema:
                $ref: '#/components/schemas/Result'
        '403':
          description: Unauthorized to perform the operation.
      x-admin-only: true
  /admin/health/scheduler:
    get:
      tags:
      - Admin
      summary: Returns the Scheduler health
      description: The authenticated user must be an administrator.
      operationId: getSchedulerHealth
      security:
      - Bearer: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result'
            application/zensie-v2+json:
              schema:
                $ref: '#/components/schemas/Result'
        '403':
          description: Unauthorized to perform the operation. User has to be admin.
      x-admin-only: true
  /admin/notification-follow/user/{email}:
    delete:
      tags:
      - Admin
      summary: Delete all notification follows of a user (i.e.
      description: ''
      operationId: deleteAllNotificationFollowsOfUser
      parameters:
      - name: email
        in: path
        required: true
        schema:
          type: string
      security:
      - Bearer: []
      responses:
        '200':
          description: Notifications have been deleted
        '403':
          description: User not allowed to perform the operation
      x-admin-only: true
components:
  schemas:
    Throwable:
      type: object
      properties:
        cause:
          $ref: '#/components/schemas/Throwable'
        stackTrace:
          type: array
          items:
            $ref: '#/components/schemas/StackTraceElement'
        message:
          type: string
        suppressed:
          type: array
          items:
            $ref: '#/components/schemas/Throwable'
        localizedMessage:
          type: string
    Result:
      type: object
      properties:
        healthy:
          type: boolean
        message:
          type: string
        error:
          $ref: '#/components/schemas/Throwable'
        details:
          type: object
          additionalProperties:
            type: object
        time:
          type: integer
          format: int64
        duration:
          type: integer
          format: int64
        timestamp:
          type: string
    StackTraceElement:
      type: object
      properties:
        classLoaderName:
          type: string
        moduleName:
          type: string
        moduleVersion:
          type: string
        methodName:
          type: string
        fileName:
          type: string
        lineNumber:
          type: integer
          format: int32
        className:
          type: string
        nativeMethod:
          type: boolean
  securitySchemes:
    Bearer:
      description: ''
      type: apiKey
      name: Authorization
      in: header