Mastodon Instances Versions API

The Versions API from Mastodon Instances — 2 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/mastodon-instances-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

mastodon-instances-versions-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Mastodon Instances Versions API
  version: 1.0.0
  description: 'The instances.social API allows searching for and retrieving information

    about Mastodon server instances, including user counts, language,

    software version, uptime statistics, content moderation policies, and

    supported features.

    '
  contact:
    name: instances.social
    url: https://instances.social
servers:
- url: https://instances.social/api/1.0
  description: Production
security:
- BearerAuth: []
tags:
- name: Versions
paths:
  /versions/list:
    get:
      summary: List Mastodon versions seen across the network
      operationId: listVersions
      parameters:
      - in: query
        name: count
        schema:
          type: integer
          minimum: 0
          maximum: 10000
          default: 20
      - in: query
        name: include_specials
        schema:
          type: boolean
          default: true
      - in: query
        name: include_unused
        schema:
          type: boolean
          default: true
      - in: query
        name: min_id
        schema:
          type: integer
      responses:
        '200':
          description: Versions list.
      tags:
      - Versions
  /versions/show:
    get:
      summary: Show information about a specific Mastodon version
      operationId: showVersion
      parameters:
      - in: query
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Version details.
      tags:
      - Versions
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: 'API token obtained from https://instances.social/api/token,

        passed as `Authorization: Bearer {token}`.

        '