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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/macrometa-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
openapi: 3.2.0
info:
title: Macrometa API Reference Activity Metrics Version API
version: 0.17.17
description: API reference for the Macrometa Global Data Network.
license:
name: Macrometa License, Version 2.0
servers:
- url: https://api-play.paas.macrometa.io
description: GDN API
host: api-play.paas.macrometa.io
security:
- ApiKeyAuth: []
- BearerAuth: []
tags:
- name: Version
description: Get EDS version
paths:
/api/es/v1/version:
get:
summary: Get EDS version via WebSocket
description: Get the EDS version information.
operationId: get-version-ws
tags:
- Version
responses:
'200':
description: Successfully returned the version.
content:
application/json:
schema:
$ref: '#/components/schemas/GetVersionResponse'
/api/es/sse/v1/version:
get:
tags:
- Version
summary: Get EDS version via SSE
description: Get the EDS version information.
operationId: get-version-sse
responses:
'200':
description: Successfully returned the version.
content:
application/json:
schema:
$ref: '#/components/schemas/GetVersionResponse'
/api/ds/v1/version:
get:
summary: Get the version
tags:
- Version
security:
- ApiKeyAuth: []
description: Get the version details for the service.
operationId: getVersion
responses:
'200':
description: Successfully returned the version.
content:
application/json:
schema:
$ref: '#/components/schemas/GetVersionResponse_2'
/api/hss/v1/version:
get:
tags:
- Version
summary: Get version
description: Get the current version.
operationId: get_version_api_hss_v1_version_get
responses:
'200':
description: Successfully returned the version.
content:
application/json:
schema: {}
example:
version: '1.0'
'401':
description: 'Error: Unauthorized.'
content:
application/json:
example:
detail: Unauthorized
security:
- APIKeyHeader: []
/api/prerender/v1/version:
get:
summary: Get API version
tags:
- Version
description: Returns the API version.
responses:
'200':
description: API version fetched successfully.
content:
application/json:
schema:
type: object
properties:
version:
type: string
description: API version.
required:
- version
description: API version fetched successfully.
example:
version: 1.0.0
'500':
description: Internal server error.
content:
application/json:
schema:
type: object
description: Internal server error.
properties:
status:
type: string
description: Error status.
message:
type: string
description: Error message.
required:
- status
- message
example:
status: ERROR
message: Internal server error.
/api/vwr/v1/version:
get:
summary: Version of the service
tags:
- Version
description: Gets the current version of the service.
operationId: getVersion
security:
- APIKeyAuth: []
responses:
'200':
description: Successfully fetched the version of the service.
content:
application/json:
schema:
$ref: '#/components/schemas/GetVersionResponse_3'
'401':
description: Authorization failure due to invalid authentication credentials.
'403':
description: Either the API key doesn't have permissions or it is deactivated.
'500':
description: Internal server error.
components:
schemas:
GetVersionResponse_3:
type: object
properties:
version:
type: string
description: The version of the service.
GetVersionResponse_2:
type: object
properties:
version:
type: string
GetVersionResponse:
type: object
required:
- version
properties:
version:
type: string
example: v1
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: Authorization
description: 'Provide an API Key to the `Authorization` header, prefixed with "apikey".
Example: `Authorization: apikey <key>`'
BearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: 'Provide a JSON Web Token (JWT) to the `Authorization` header, prefixed with "bearer".
Example: `Authorization: bearer <jwt>`'