Cosmo Tech meta API

Meta Management

Operations 1

GET /about Get various information about the API #

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/cosmo-tech-meta-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

cosmo-tech-meta-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cosmo Tech Manager dataset Meta API
  description: Cosmo Tech Dataset Manager API
  version: 1.0.0-SNAPSHOT
servers:
- url: http://localhost:8080
security:
- oAuth2AuthCode: []
tags:
- name: meta
  description: Meta Management
paths:
  /about:
    get:
      operationId: about
      tags:
      - meta
      description: Retrieve API version information and build details.
      summary: Get various information about the API
      responses:
        '200':
          description: API information details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AboutInfo'
              examples:
                ReleaseAboutInfo:
                  $ref: '#/components/examples/ReleaseAboutInfo'
                DirtySnapshotAboutInfo:
                  $ref: '#/components/examples/DirtySnapshotAboutInfo'
            application/yaml:
              schema:
                $ref: '#/components/schemas/AboutInfo'
              examples:
                ReleaseAboutInfo:
                  $ref: '#/components/examples/ReleaseAboutInfo'
                DirtySnapshotAboutInfo:
                  $ref: '#/components/examples/DirtySnapshotAboutInfo'
components:
  examples:
    DirtySnapshotAboutInfo:
      summary: Dirty state snapshot version
      description: Version details for an in development snapshot version
      value:
        version:
          full: 4.2.0-SNAPSHOT-a6bdbc29
          release: 4.2.0
          major: 4
          minor: 2
          patch: 0
          label: SNAPSHOT
          build: a6bdbc29
    ReleaseAboutInfo:
      summary: Released version
      description: Version details for a clean released version
      value:
        version:
          full: 4.2.0-a6bdbc29
          release: 4.2.0
          major: 4
          minor: 2
          patch: 0
          label: ''
          build: a6bdbc29
  schemas:
    AboutInfoVersion:
      type: object
      description: API version details
      required:
      - full
      - release
      - major
      - minor
      - patch
      - label
      - build
      properties:
        full:
          type: string
          description: Full version representation
        release:
          type: string
          description: Release main version representation
        major:
          type: integer
          description: Major version number
        minor:
          type: integer
          description: Minor version number
        patch:
          type: integer
          description: Patch version number
        label:
          type: string
          description: Label version, may be empty
        build:
          type: string
          description: Build VCS id
    AboutInfo:
      type: object
      description: Misc information about the api
      required:
      - version
      properties:
        version:
          $ref: '#/components/schemas/AboutInfoVersion'
  securitySchemes:
    oAuth2AuthCode:
      type: oauth2
      description: OAuth2 authentication
      flows:
        authorizationCode:
          authorizationUrl: https://example.com/authorize
          tokenUrl: https://example.com/token
          scopes: {}