Skip to main content
POST
/
compute
/
v1
/
instances
curl -X POST "https://api.case.dev/compute/v1/instances" \ -H "Authorization: Bearer $CASEDEV_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "<string>", "instanceType": "<string>", "region": "<string>" }'
{
  "id": "<string>",
  "name": "<string>",
  "status": "<string>",
  "instanceType": "<string>",
  "region": "<string>",
  "pricePerHour": "<string>",
  "gpu": "<string>",
  "specs": {},
  "vaults": "<array>",
  "createdAt": "<string>",
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.case.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key starting with sk_case_

Body

application/json
name
string
required

Instance name

instanceType
string
required

GPU type (e.g., 'gpu_1x_h100_sxm5')

region
string
required

Region (e.g., 'us-west-1')

vaultIds
string[]

Vault IDs to mount

Response

Instance launching

id
string
name
string
status
string
instanceType
string
region
string
pricePerHour
string
gpu
string
specs
object
vaults
array
createdAt
string
message
string