Build powerful applications with our REST API
https://api.limitlessai.com/v1
All API requests require an API key in the header:
Authorization: Bearer YOUR_API_KEY
/instances
List all instances
{
"instances": [
{
"id": "i-1234567890",
"name": "gpu-worker-1",
"type": "gpu-rtx4090",
"status": "running",
"ip": "192.168.1.100",
"created_at": "2024-01-15T10:30:00Z"
}
],
"total": 1
}
/instances
Create new instance
{
"name": "my-gpu-instance",
"type": "gpu-rtx4090",
"region": "us-west-1",
"image": "ubuntu:22.04",
"ssh_keys": ["ssh-rsa AAAAB3..."]
}
{
"instance": {
"id": "i-9876543210",
"name": "my-gpu-instance",
"type": "gpu-rtx4090",
"status": "provisioning",
"created_at": "2024-01-15T11:00:00Z"
}
}
/instances/{id}
Delete instance
{
"success": true,
"message": "Instance deleted successfully"
}
/storage/volumes
List storage volumes
/storage/volumes
Create volume
Plan | Requests/Second | Requests/Day | Burst Limit |
---|---|---|---|
Free | 10 | 1,000 | 20 |
Starter | 100 | 100,000 | 200 |
Pro | 1,000 | 10,000,000 | 2,000 |
Enterprise | Custom | Unlimited | Custom |