curl -X DELETE https://api.galadriel.com/v1/leases/lse_xyz123 \ -H "Authorization: Bearer YOUR_API_TOKEN"
{ "lease_id": "lse_xyz123", "status": "terminated", "terminated_at": "2025-11-11T18:00:00Z", "original_end_time": "2025-11-12T14:00:00Z", "hours_used": 4.0, "hours_remaining": 20.0, "rate": 1.40, "refund_amount": 448.00, "refunded_at": "2025-11-11T18:00:01Z" }
Terminate an active lease early
# Instead of terminating curl -X DELETE https://api.galadriel.com/v1/leases/lse_xyz123 # Resell for better recovery curl -X POST https://api.galadriel.com/v1/leases/lse_xyz123/resell \ -d '{"limit_price": 1.20}'