Codesphere metadata API
The metadata API from Codesphere — 3 operation(s) for metadata.
The metadata API from Codesphere — 3 operation(s) for metadata.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/codesphere-metadata-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.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