Algorand Versions API

The Versions API from Algorand — 1 operation(s) for versions.

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/algorand-versions-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

algorand-versions-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  contact:
    email: contact@algorand.com
    name: algorand
    url: https://www.algorand.com/get-in-touch/contact
  description: API endpoint for algod operations.
  title: Algod REST API. common Versions API
  version: 0.0.1
servers:
- url: http://localhost/
- url: https://localhost/
security:
- api_key: []
tags:
- name: Versions
paths:
  /versions:
    get:
      produces:
      - application/json
      summary: Retrieves the current version
      operationId: GetVersion
      parameters:
      - name: Versions Request
        in: body
        schema:
          $ref: '#/definitions/VersionsRequest'
      responses:
        '200':
          $ref: '#/responses/VersionsResponse'
      tags:
      - Versions
components:
  securitySchemes:
    api_key:
      description: Generated header parameter. This token can be generated using the Goal command line tool. Example value ='b7e384d0317b8050ce45900a94a1931e28540e1f69b2d242b424659c341b4697'
      in: header
      name: X-Algo-API-Token
      type: apiKey
definitions:
  VersionsRequest:
    description: VersionsRequest is the request for `GET /versions`
    type: object
    x-go-package: github.com/algorand/go-algorand/daemon/kmd/lib/kmdapi
  VersionsResponse:
    description: 'VersionsResponse is the response to `GET /versions`

      friendly:VersionsResponse'
    type: object
    properties:
      versions:
        type: array
        items:
          type: string
        x-go-name: Versions
    x-go-package: github.com/algorand/go-algorand/daemon/kmd/lib/kmdapi
responses:
  VersionsResponse:
    description: Response to `GET /versions`
    schema:
      $ref: '#/definitions/VersionsResponse'
x-original-swagger-version: '2.0'