REST API reference
Programmatic access to the Flopdesk market feed. JSON over HTTPS, no SDK required.
Base URL
https://flopdesk.com
EnterpriseAPI access and higher rate limits are included with the Enterprise plan. Keys are issued per team.
GET
/api/pricesLatest normalized on-demand and reserved pricing snapshots.
Query parameters
gpuGPU slug, e.g. h100-sxm, h200, b200vendorNVIDIA | AMDproviderprovider slug, e.g. lambda, coreweave, awsregionregion slug, e.g. us-east, eu-centralavailabilityAVAILABLE | LIMITED | WAITLIST | UNAVAILABLElimitmax rows to return
Response
{
"data": [
{
"providerName": "Lambda", "gpuName": "H100 SXM",
"regionName": "US East (N. Virginia)",
"hourlyRate": 2.49, "monthlyReservedRate": 1.42,
"availability": "AVAILABLE",
"capturedAt": "2026-06-14T00:00:00.000Z"
}
],
"count": 1,
"lastUpdated": "2026-06-14T00:00:00.000Z"
}GET
/api/providersProviders with capacity/reliability scores and current cheapest rate.
Query parameters
slugreturn a single provider by slug
Response
{
"data": [
{
"slug": "coreweave", "name": "CoreWeave",
"capacityScore": 94, "reliabilityScore": 92,
"gpuCount": 6, "cheapestHourly": 0.92
}
]
}GET
/api/capacityAvailable cluster inventory in the capacity marketplace.
Query parameters
gpuGPU slug filterregionregion slug filterminSizeminimum cluster size (GPU count)maxPricemaximum $/GPU-hr
Response
{
"data": [
{
"providerName": "Crusoe", "gpuName": "H200",
"regionName": "US Central (Iowa)",
"quantity": 128, "durationHrs": 720,
"pricePerHr": 3.05, "availability": "AVAILABLE",
"estAvailableAt": "2026-06-20T00:00:00.000Z"
}
]
}