API

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/prices

Latest normalized on-demand and reserved pricing snapshots.

Query parameters
  • gpuGPU slug, e.g. h100-sxm, h200, b200
  • vendorNVIDIA | AMD
  • providerprovider slug, e.g. lambda, coreweave, aws
  • regionregion slug, e.g. us-east, eu-central
  • availabilityAVAILABLE | LIMITED | WAITLIST | UNAVAILABLE
  • limitmax 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/providers

Providers 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/capacity

Available cluster inventory in the capacity marketplace.

Query parameters
  • gpuGPU slug filter
  • regionregion slug filter
  • minSizeminimum 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"
    }
  ]
}