Codesphere metadata API

The metadata API from Codesphere — 3 operation(s) for metadata.

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/codesphere-metadata-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

codesphere-metadata-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Codesphere Public clusters metadata API
  version: 0.1.0
servers:
- url: https://cloud.codesphere.com/api
tags:
- name: metadata
paths:
  /metadata/datacenters:
    get:
      summary: getDatacenters
      tags:
      - metadata
      parameters: []
      responses:
        '200':
          description: Success.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                      minimum: 0
                    name:
                      type: string
                    city:
                      type: string
                    countryCode:
                      type: string
                  required:
                  - id
                  - name
                  - city
                  - countryCode
        '401':
          description: Authorization information is missing or invalid.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    enum:
                    - 401
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
                required:
                - status
                - title
                - traceId
      security:
      - bearerAuth: []
      operationId: metadata-getDatacenters
  /metadata/workspace-plans:
    get:
      summary: getWorkspacePlans
      tags:
      - metadata
      parameters: []
      responses:
        '200':
          description: Success.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                      minimum: 0
                    priceUsd:
                      type: number
                    title:
                      type: string
                    deprecated:
                      type: boolean
                    characteristics:
                      type: object
                      properties:
                        id:
                          type: integer
                          minimum: 0
                        CPU:
                          type: number
                        GPU:
                          type: number
                        RAM:
                          type: integer
                          minimum: 0
                        SSD:
                          type: integer
                          minimum: 0
                        TempStorage:
                          type: integer
                          minimum: 0
                        onDemand:
                          type: boolean
                      required:
                      - id
                      - CPU
                      - GPU
                      - RAM
                      - SSD
                      - TempStorage
                      - onDemand
                    maxReplicas:
                      type: integer
                      minimum: 1
                  required:
                  - id
                  - priceUsd
                  - title
                  - deprecated
                  - characteristics
                  - maxReplicas
        '401':
          description: Authorization information is missing or invalid.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    enum:
                    - 401
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
                required:
                - status
                - title
                - traceId
      security:
      - bearerAuth: []
      operationId: metadata-getWorkspacePlans
  /metadata/workspace-base-images:
    get:
      summary: getWorkspaceBaseImages
      tags:
      - metadata
      parameters: []
      responses:
        '200':
          description: Success.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    name:
                      type: string
                    supportedUntil:
                      type: string
                      format: date-time
                  required:
                  - id
                  - name
                  - supportedUntil
        '401':
          description: Authorization information is missing or invalid.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    enum:
                    - 401
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
                required:
                - status
                - title
                - traceId
      security:
      - bearerAuth: []
      operationId: metadata-getWorkspaceBaseImages
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer