CodeSandbox · Schema
Sandbox
A CodeSandbox sandbox or devbox backed by a Firecracker microVM.
Developer ToolsCloud IDECode SandboxesBrowser DevelopmentAI SandboxesCode Embedding
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Short ID of the sandbox |
| created_at | string | ISO 8601 timestamp when the sandbox was created |
| updated_at | string | ISO 8601 timestamp when the sandbox was last updated |
| is_frozen | boolean | When true, edits to the sandbox are restricted |
| privacy | integer | Privacy level: 0 = public, 1 = unlisted, 2 = private |
| title | stringnull | Sandbox title |
| description | stringnull | Text description of the sandbox |
| tags | array | List of tags applied to this sandbox |
| settings | object | Sandbox settings |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.codesandbox.io/schemas/sandbox",
"title": "Sandbox",
"description": "A CodeSandbox sandbox or devbox backed by a Firecracker microVM.",
"type": "object",
"required": ["id", "privacy", "is_frozen", "created_at", "updated_at", "tags", "settings"],
"properties": {
"id": {
"type": "string",
"description": "Short ID of the sandbox",
"example": "1ab3c"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp when the sandbox was created"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp when the sandbox was last updated"
},
"is_frozen": {
"type": "boolean",
"description": "When true, edits to the sandbox are restricted"
},
"privacy": {
"type": "integer",
"minimum": 0,
"maximum": 2,
"description": "Privacy level: 0 = public, 1 = unlisted, 2 = private"
},
"title": {
"type": ["string", "null"],
"maxLength": 255,
"description": "Sandbox title"
},
"description": {
"type": ["string", "null"],
"description": "Text description of the sandbox"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of tags applied to this sandbox"
},
"settings": {
"type": "object",
"description": "Sandbox settings",
"properties": {
"use_pint": {
"type": "boolean",
"description": "Whether Pint (the new bundler) is used for this sandbox"
}
}
}
}
}
Work with this as data
Every JSON Schema 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 schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.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 JSON Schema
curl "https://apis.io/api/v1/json-schemas/codesandbox-sandbox"
All schemas
curl "https://apis.io/api/v1/json-schemas?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.