Nym Technologies Unstable API

The Unstable API from Nym Technologies — 1 operation(s) for unstable.

Operations 1

GET /v1/unstable/account/{address} #

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-unstable-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-unstable-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Node Status API Status Unstable 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: Unstable
paths:
  /v1/unstable/account/{address}:
    get:
      tags:
      - Unstable
      operationId: address
      parameters:
      - name: address
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NyxAccountDetails'
components:
  schemas:
    CoinSchema:
      type: object
      title: Coin
      required:
      - denom
      - amount
      properties:
        amount:
          type: integer
          minimum: 0
        denom:
          type: string
    NyxAccountDetails:
      type: object
      required:
      - address
      - balance
      - total_value
      - delegations
      - accumulated_rewards
      - total_delegations
      - claimable_rewards
      properties:
        accumulated_rewards:
          type: array
          items:
            $ref: '#/components/schemas/NyxAccountDelegationRewardDetails'
          description: 'Shows rewards from delegations to **currently** bonded nodes.

            Rewards from nodes that user delegated to, but were later unbonded,

            are claimable, but not shown here.'
        address:
          type: string
        balance:
          $ref: '#/components/schemas/CoinSchema'
        claimable_rewards:
          $ref: '#/components/schemas/CoinSchema'
        delegations:
          type: array
          items:
            $ref: '#/components/schemas/NyxAccountDelegationDetails'
        operator_rewards:
          oneOf:
          - type: 'null'
          - $ref: '#/components/schemas/CoinSchema'
        total_delegations:
          type: string
        total_value:
          $ref: '#/components/schemas/CoinSchema'
    NyxAccountDelegationRewardDetails:
      type: object
      required:
      - node_id
      - rewards
      - amount_staked
      - node_still_fully_bonded
      properties:
        amount_staked:
          type: string
        node_id:
          $ref: '#/components/schemas/u32'
        node_still_fully_bonded:
          type: boolean
        rewards:
          $ref: '#/components/schemas/CoinSchema'
    u32:
      type: integer
      format: int32
      minimum: 0
    NyxAccountDelegationDetails:
      type: object
      required:
      - node_id
      - delegated
      - height
      - node_bonded
      properties:
        delegated:
          $ref: '#/components/schemas/CoinSchema'
        height:
          type: integer
          format: int64
          minimum: 0
        node_bonded:
          type: boolean
        node_id:
          $ref: '#/components/schemas/u32'
        proxy:
          type:
          - string
          - 'null'