Nym Technologies Ecash Global Data API

The Ecash Global Data API from Nym Technologies — 3 operation(s) for ecash global data.

Operations 3

GET /v1/ecash/aggregated-coin-indices-signatures #
GET /v1/ecash/aggregated-expiration-date-signatures #
GET /v1/ecash/master-verification-key #

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-ecash-global-data-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-ecash-global-data-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Node Status API Status Ecash Global Data 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: Ecash Global Data
paths:
  /v1/ecash/aggregated-coin-indices-signatures:
    get:
      tags:
      - Ecash Global Data
      operationId: coin_indices_signatures
      parameters:
      - name: epoch_id
        in: query
        required: false
        schema:
          type:
          - integer
          - 'null'
          format: int64
          minimum: 0
      - name: output
        in: query
        required: false
        schema:
          oneOf:
          - type: 'null'
          - $ref: '#/components/schemas/Output'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AggregatedCoinIndicesSignatureResponse'
            application/yaml:
              schema:
                $ref: '#/components/schemas/AggregatedCoinIndicesSignatureResponse'
            application/bincode:
              schema:
                $ref: '#/components/schemas/AggregatedCoinIndicesSignatureResponse'
  /v1/ecash/aggregated-expiration-date-signatures:
    get:
      tags:
      - Ecash Global Data
      operationId: expiration_date_signatures
      parameters:
      - name: expiration_date
        in: query
        required: false
        schema:
          type:
          - string
          - 'null'
      - name: epoch_id
        in: query
        required: false
        schema:
          oneOf:
          - type: 'null'
          - $ref: '#/components/schemas/u64'
      - name: output
        in: query
        required: false
        schema:
          oneOf:
          - type: 'null'
          - $ref: '#/components/schemas/Output'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AggregatedExpirationDateSignatureResponse'
            application/yaml:
              schema:
                $ref: '#/components/schemas/AggregatedExpirationDateSignatureResponse'
            application/bincode:
              schema:
                $ref: '#/components/schemas/AggregatedExpirationDateSignatureResponse'
  /v1/ecash/master-verification-key:
    get:
      tags:
      - Ecash Global Data
      operationId: master_verification_key
      parameters:
      - name: epoch_id
        in: query
        required: false
        schema:
          type:
          - integer
          - 'null'
          format: int64
          minimum: 0
      - name: output
        in: query
        required: false
        schema:
          oneOf:
          - type: 'null'
          - $ref: '#/components/schemas/Output'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerificationKeyResponse'
            application/yaml:
              schema:
                $ref: '#/components/schemas/VerificationKeyResponse'
            application/bincode:
              schema:
                $ref: '#/components/schemas/VerificationKeyResponse'
components:
  schemas:
    u64:
      type: integer
      format: int64
      minimum: 0
    AnnotatedExpirationDateSignature:
      type: object
      required:
      - signature
      - expiration_timestamp
      - spending_timestamp
      properties:
        expiration_timestamp:
          type: integer
          format: int32
          minimum: 0
        signature:
          $ref: '#/components/schemas/Signature'
        spending_timestamp:
          type: integer
          format: int32
          minimum: 0
    Signature:
      type: object
      required:
      - h
      - s
      properties:
        h:
          type: string
        s:
          type: string
    VerificationKeyAuth:
      type: object
      required:
      - alpha
      - beta_g1
      - beta_g2
      properties:
        alpha:
          type: string
        beta_g1:
          type: array
          items:
            type: string
        beta_g2:
          type: array
          items:
            type: string
    AggregatedExpirationDateSignatureResponse:
      type: object
      required:
      - epoch_id
      - expiration_date
      - signatures
      properties:
        epoch_id:
          type: integer
          format: int64
          minimum: 0
        expiration_date:
          type: string
          example: '1970-01-01'
        signatures:
          type: array
          items:
            $ref: '#/components/schemas/AnnotatedExpirationDateSignature'
    VerificationKeyResponse:
      type: object
      required:
      - key
      properties:
        key:
          $ref: '#/components/schemas/VerificationKeyAuth'
    Output:
      type: string
      enum:
      - json
      - yaml
      - bincode
    AggregatedCoinIndicesSignatureResponse:
      type: object
      required:
      - epoch_id
      - signatures
      properties:
        epoch_id:
          type: integer
          format: int64
          minimum: 0
        signatures:
          $ref: '#/components/schemas/Signature'