Retrieves all GPU compute instances for your organization with real-time status updates from Lambda Labs. Includes pricing, runtime metrics, and auto-shutdown configuration. Perfect for monitoring AI workloads, document processing jobs, and cost tracking.
curl --request GET \
--url https://api.case.dev/compute/v1/instances \
--header 'Authorization: Bearer <token>'{
"instances": [
{
"id": "gpu_abc123",
"name": "ocr-processing",
"status": "running",
"ip": "143.198.54.123",
"instanceType": "gpu_1x_a10",
"region": "us-west-1",
"pricePerHour": "$0.60",
"gpu": "1x A10 (24 GB)",
"autoShutdownMinutes": 60,
"startedAt": "2025-01-15T10:00:00Z",
"totalRuntimeSeconds": 1800,
"totalCost": "$0.30",
"createdAt": "2025-01-15T10:00:00Z"
}
],
"count": 1
}Was this page helpful?
curl --request GET \
--url https://api.case.dev/compute/v1/instances \
--header 'Authorization: Bearer <token>'{
"instances": [
{
"id": "gpu_abc123",
"name": "ocr-processing",
"status": "running",
"ip": "143.198.54.123",
"instanceType": "gpu_1x_a10",
"region": "us-west-1",
"pricePerHour": "$0.60",
"gpu": "1x A10 (24 GB)",
"autoShutdownMinutes": 60,
"startedAt": "2025-01-15T10:00:00Z",
"totalRuntimeSeconds": 1800,
"totalCost": "$0.30",
"createdAt": "2025-01-15T10:00:00Z"
}
],
"count": 1
}