Nym Technologies Summary API

The Summary API from Nym Technologies — 2 operation(s) for summary.

Operations 2

GET /v2/summary #
GET /v2/summary/history #

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/nym-technologies-summary-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

nym-technologies-summary-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Node Status API Status Summary API
  description: ''
  contact:
    name: Nym Technologies SA
  license:
    name: Apache-2.0
    identifier: Apache-2.0
  version: 4.6.2
servers:
- url: https://validator.nymtech.net/api
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Summary
paths:
  /v2/summary:
    get:
      tags:
      - Summary
      operationId: summary
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NetworkSummary'
  /v2/summary/history:
    get:
      tags:
      - Summary
      operationId: summary_history
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SummaryHistory'
components:
  schemas:
    GatewaySummaryHistorical:
      type: object
      required:
      - count
      - last_updated_utc
      properties:
        count:
          type: integer
          format: int32
        last_updated_utc:
          type: string
    MixnodeSummary:
      type: object
      required:
      - bonded
      - historical
      properties:
        bonded:
          $ref: '#/components/schemas/MixingNodesSummary'
        historical:
          $ref: '#/components/schemas/MixnodeSummaryHistorical'
    NetworkSummary:
      type: object
      required:
      - total_nodes
      - mixnodes
      - gateways
      properties:
        gateways:
          $ref: '#/components/schemas/GatewaySummary'
        mixnodes:
          $ref: '#/components/schemas/MixnodeSummary'
        total_nodes:
          type: integer
          format: int32
    MixingNodesSummary:
      type: object
      required:
      - count
      - self_described
      - last_updated_utc
      properties:
        count:
          type: integer
          format: int32
        last_updated_utc:
          type: string
        self_described:
          type: integer
          format: int32
    SummaryHistory:
      type: object
      required:
      - date
      - value_json
      - timestamp_utc
      properties:
        date:
          type: string
        timestamp_utc:
          type: string
        value_json: {}
    GatewaySummary:
      type: object
      required:
      - bonded
      - historical
      properties:
        bonded:
          $ref: '#/components/schemas/GatewaySummaryBonded'
        historical:
          $ref: '#/components/schemas/GatewaySummaryHistorical'
    MixnodeSummaryHistorical:
      type: object
      required:
      - count
      - last_updated_utc
      properties:
        count:
          type: integer
          format: int32
        last_updated_utc:
          type: string
    GatewaySummaryBonded:
      type: object
      required:
      - count
      - entry
      - exit
      - last_updated_utc
      properties:
        count:
          type: integer
          format: int32
        entry:
          type: integer
          format: int32
        exit:
          type: integer
          format: int32
        last_updated_utc:
          type: string