curl https://api.galadriel.com/v1/orders/ord_abc123 \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"order_id": "ord_abc123",
"side": "buy",
"gpu_type": "h100",
"gpu_count": 16,
"zone": "us-west-1",
"duration_hours": 24,
"order_type": "limit",
"limit_price": 1.30,
"status": "filled",
"filled_gpus": 16,
"avg_price": 1.30,
"total_cost": 499.20,
"created_at": "2025-11-11T14:00:00Z",
"filled_at": "2025-11-11T14:30:00Z",
"matches": [
{
"matched_at": "2025-11-11T14:30:00Z",
"gpus": 16,
"price": 1.30,
"lease_id": "lse_xyz123"
}
]
}
Retrieve details of a specific order
curl https://api.galadriel.com/v1/orders/ord_abc123 \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"order_id": "ord_abc123",
"side": "buy",
"gpu_type": "h100",
"gpu_count": 16,
"zone": "us-west-1",
"duration_hours": 24,
"order_type": "limit",
"limit_price": 1.30,
"status": "filled",
"filled_gpus": 16,
"avg_price": 1.30,
"total_cost": 499.20,
"created_at": "2025-11-11T14:00:00Z",
"filled_at": "2025-11-11T14:30:00Z",
"matches": [
{
"matched_at": "2025-11-11T14:30:00Z",
"gpus": 16,
"price": 1.30,
"lease_id": "lse_xyz123"
}
]
}
pending, partial, filled, or cancelledcurl https://api.galadriel.com/v1/orders/ord_abc123 \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"order_id": "ord_abc123",
"side": "buy",
"gpu_type": "h100",
"gpu_count": 16,
"zone": "us-west-1",
"duration_hours": 24,
"order_type": "limit",
"limit_price": 1.30,
"status": "filled",
"filled_gpus": 16,
"avg_price": 1.30,
"total_cost": 499.20,
"created_at": "2025-11-11T14:00:00Z",
"filled_at": "2025-11-11T14:30:00Z",
"matches": [
{
"matched_at": "2025-11-11T14:30:00Z",
"gpus": 16,
"price": 1.30,
"lease_id": "lse_xyz123"
}
]
}