Supra Version API

The Version API from Supra — 1 operation(s) for version.

Operations 1

GET /rpc/v3/version Get Build Information (v3) #

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/supra-version-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

supra-version-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Supra RPC Node Version API
  description: '0.5.0

    tag:supra_rpc_v11.5.2

    commit_hash:5e9ea652

    build_time:2026-08-25 08:38:29 +00:00

    build_env:rustc 1.97.1 (8bab26f4f 2026-07-14),1.97.1-x86_64-unknown-linux-gnu'
  contact:
    name: Supra Labs
    url: https://supra.com
  version: 5e9ea652457cd48aba6b1505bdd59da27fec13f6
servers:
- url: /
tags:
- name: Version
paths:
  /rpc/v3/version:
    get:
      tags:
      - Version
      summary: Get Build Information (v3)
      description: Return the build information of the rpc node binary.
      operationId: version_info_v3
      responses:
        '200':
          description: Current binary build information
          headers:
            x-supra-chain-id:
              schema:
                type: integer
                format: u-int8
                minimum: 0
              description: Chain ID of the current chain.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VersionInfo'
components:
  schemas:
    VersionInfo:
      type: object
      description: JSON payload returned by `/rpc/v3/version`
      required:
      - version
      - branch
      - commit_hash
      - build_time
      - build_env
      properties:
        version:
          type: string
          description: SemVer coming from Cargo.toml
        branch:
          type: string
          description: Git branch used for the build
        commit_hash:
          type: string
          description: Full git commit hash
        build_time:
          type: string
          description: Timestamp produced by `build.rs`
        build_env:
          type: string
          description: Rust tool-chain used to build the binary