Skip to main content
POST
https://api.galadriel.com
/
v1
/
leases
/
{lease_id}
/
resell
curl -X POST https://api.galadriel.com/v1/leases/lse_xyz123/resell \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "limit_price": 1.20,
    "available_from": "2025-11-12T14:00:00Z",
    "transfer_immediately": false
  }'
{
  "order_id": "ord_resell123",
  "lease_id": "lse_xyz123",
  "limit_price": 1.20,
  "status": "pending",
  "available_from": "2025-11-12T14:00:00Z",
  "available_until": "2025-11-14T14:00:00Z",
  "remaining_hours": 48,
  "potential_recovery": 921.60,
  "platform_fee": 92.16,
  "net_recovery": 829.44,
  "created_at": "2025-11-11T14:00:00Z"
}

Path Parameters

lease_id
string
required
The lease ID to resell

Request Body

limit_price
number
required
Price per GPU/hour for resale
available_from
string
When the lease becomes available for transfer (ISO 8601 format). Default: now
available_until
string
When the resell order expires (ISO 8601 format). Default: lease end time
transfer_immediately
boolean
default:"false"
Transfer immediately when matched (terminates your access right away)

Response

order_id
string
The resell order ID
potential_recovery
number
Estimated recovery amount before platform fee
net_recovery
number
Estimated recovery amount after 10% platform fee
curl -X POST https://api.galadriel.com/v1/leases/lse_xyz123/resell \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "limit_price": 1.20,
    "available_from": "2025-11-12T14:00:00Z",
    "transfer_immediately": false
  }'
{
  "order_id": "ord_resell123",
  "lease_id": "lse_xyz123",
  "limit_price": 1.20,
  "status": "pending",
  "available_from": "2025-11-12T14:00:00Z",
  "available_until": "2025-11-14T14:00:00Z",
  "remaining_hours": 48,
  "potential_recovery": 921.60,
  "platform_fee": 92.16,
  "net_recovery": 829.44,
  "created_at": "2025-11-11T14:00:00Z"
}

Notes

You receive both the original refund from Galadriel AND the net proceeds from the resale (minus 10% platform fee).
Once a resell order is matched, the transfer cannot be cancelled. Make sure you’re ready to give up access at the specified time.