TensorDock Instance
Schema for a TensorDock v2 virtual machine instance as returned by /api/v2/instances/{id}.
GPUCloudMarketplaceComputeVirtual MachinesArtificial IntelligenceMachine-LearningBare MetalSpot InstancesContainers
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/tensordock/main/json-schema/tensordock-instance-schema.json",
"title": "TensorDock Instance",
"description": "Schema for a TensorDock v2 virtual machine instance as returned by /api/v2/instances/{id}.",
"type": "object",
"properties": {
"data": {
"type": "object",
"required": ["type", "id", "attributes"],
"properties": {
"type": {
"type": "string",
"const": "virtualmachine"
},
"id": {
"type": "string",
"description": "Instance UUID."
},
"attributes": {
"type": "object",
"required": ["name", "status"],
"properties": {
"name": {
"type": "string"
},
"status": {
"type": "string",
"enum": ["starting", "running", "stopping", "stopped", "deleting", "deleted", "error"]
},
"ipAddress": {
"type": "string",
"format": "ipv4"
},
"portForwards": {
"type": "object",
"description": "Map of internal port -> external port forwards.",
"additionalProperties": {
"type": "integer"
}
},
"resources": {
"type": "object",
"properties": {
"vcpu_count": {
"type": "integer",
"minimum": 1
},
"ram_gb": {
"type": "number",
"minimum": 0
},
"storage_gb": {
"type": "number",
"minimum": 100,
"description": "Minimum storage allocation is 100 GB."
},
"gpus": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gpuV0Name": {
"type": "string",
"description": "TensorDock canonical GPU model identifier."
},
"count": {
"type": "integer",
"minimum": 1
}
},
"required": ["gpuV0Name", "count"]
}
}
}
},
"rateHourly": {
"type": "number",
"minimum": 0,
"description": "Current per-hour billing rate in USD."
},
"location_id": {
"type": "string"
},
"image": {
"type": "string",
"description": "Operating system image (e.g., ubuntu2404, windows10)."
},
"useDedicatedIp": {
"type": "boolean"
}
}
}
}
}
},
"required": ["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.
All 92 tools
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/tensordock-instance"
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 email required.
A second provider on the same verified email joins the account you already have.