Nym Technologies Utility API

The Utility API from Nym Technologies — 4 operation(s) for utility.

Operations 4

GET /v1/utility/mixnet-cache-timestamp Return information on when the mixnet cache has last been refreshed. #
GET /v1/utility/node-annotations-cache-timestamp Return information on when the mixnet cache has last been refreshed. #
POST /v1/utility/refresh-mixnet-cache Allow to request to refresh the cache of all mixnet nodes on the network. Note that this endpoint enforces high global rate limiting and realistically should not be used outside ve #
POST /v1/utility/refresh-node-annotations-cache Allow to request to refresh the cache of all mixnet nodes on the network. Note that this endpoint enforces high global rate limiting and realistically should not be used outside ve #

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-utility-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-utility-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Node Status API Status Utility 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: Utility
paths:
  /v1/utility/mixnet-cache-timestamp:
    get:
      tags:
      - Utility
      summary: Return information on when the mixnet cache has last been refreshed.
      operationId: mixnet_cache_timestamp
      parameters:
      - name: output
        in: query
        required: false
        schema:
          oneOf:
          - type: 'null'
          - $ref: '#/components/schemas/Output'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MixnetContractCacheTimestampResponse'
            application/yaml:
              schema:
                $ref: '#/components/schemas/MixnetContractCacheTimestampResponse'
            application/bincode:
              schema:
                $ref: '#/components/schemas/MixnetContractCacheTimestampResponse'
      security:
      - auth_token: []
  /v1/utility/node-annotations-cache-timestamp:
    get:
      tags:
      - Utility
      summary: Return information on when the mixnet cache has last been refreshed.
      operationId: node_annotations_cache_timestamp
      parameters:
      - name: output
        in: query
        required: false
        schema:
          oneOf:
          - type: 'null'
          - $ref: '#/components/schemas/Output'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NodeStatusCacheTimestampResponse'
            application/yaml:
              schema:
                $ref: '#/components/schemas/NodeStatusCacheTimestampResponse'
            application/bincode:
              schema:
                $ref: '#/components/schemas/NodeStatusCacheTimestampResponse'
      security:
      - auth_token: []
  /v1/utility/refresh-mixnet-cache:
    post:
      tags:
      - Utility
      summary: 'Allow to request to refresh the cache of all mixnet nodes on the network.

        Note that this endpoint enforces high global rate limiting and realistically

        should not be used outside very special scenarios.'
      operationId: refresh_mixnet_cache
      parameters:
      - name: output
        in: query
        required: false
        schema:
          oneOf:
          - type: 'null'
          - $ref: '#/components/schemas/Output'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RefreshMixnetContractCacheRequestBody'
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RefreshMixnetContractCacheResponse'
            application/yaml:
              schema:
                $ref: '#/components/schemas/RefreshMixnetContractCacheResponse'
            application/bincode:
              schema:
                $ref: '#/components/schemas/RefreshMixnetContractCacheResponse'
      security:
      - auth_token: []
  /v1/utility/refresh-node-annotations-cache:
    post:
      tags:
      - Utility
      summary: 'Allow to request to refresh the cache of all mixnet nodes on the network.

        Note that this endpoint enforces high global rate limiting and realistically

        should not be used outside very special scenarios.'
      operationId: refresh_node_annotations_cache
      parameters:
      - name: output
        in: query
        required: false
        schema:
          oneOf:
          - type: 'null'
          - $ref: '#/components/schemas/Output'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RefreshNodeStatusCacheRequestBody'
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RefreshNodeStatusCacheResponse'
            application/yaml:
              schema:
                $ref: '#/components/schemas/RefreshNodeStatusCacheResponse'
            application/bincode:
              schema:
                $ref: '#/components/schemas/RefreshNodeStatusCacheResponse'
      security:
      - auth_token: []
components:
  schemas:
    RefreshNodeStatusCacheResponse:
      type: object
      required:
      - success
      properties:
        success:
          type: boolean
    RefreshNodeStatusCacheRequestBody:
      type: object
    RefreshMixnetContractCacheResponse:
      type: object
      required:
      - success
      properties:
        success:
          type: boolean
    RefreshMixnetContractCacheRequestBody:
      type: object
    NodeStatusCacheTimestampResponse:
      type: object
      required:
      - timestamp
      properties:
        timestamp:
          type: string
    MixnetContractCacheTimestampResponse:
      type: object
      required:
      - timestamp
      properties:
        timestamp:
          type: string
    Output:
      type: string
      enum:
      - json
      - yaml
      - bincode