API referenceList providers
GET

List providers

GEThttps://api.gpus.io/v1/providers

Returns the reference list of cloud providers tracked by GPUs.io. Use it to map provider ids to names and to build provider filters. Takes no parameters.

Request

curl -G https://api.gpus.io/v1/providers \
  -H "Authorization: Bearer $GPUS_API_KEY"

Parameters

Query parameters

This endpoint takes no parameters.

Response

A successful call returns 200 OK with this shape:

Example response
{
  "data": [
    {
      "id": "lambda",
      "name": "Lambda",
      "description": "GPU cloud built for training and inference, with on-demand and reserved H100/A100 instances.",
      "website": "https://lambdalabs.com"
    },
    {
      "id": "runpod",
      "name": "RunPod",
      "description": "Community and secure cloud GPUs with per-second billing and spot pricing.",
      "website": "https://runpod.io"
    }
  ]
}

Response fields

idstring
Stable identifier used as the provider filter value.
namestring
Provider display name.
descriptionstring
Short description of the provider.
websitestring
Provider's public website.
© 2026 GPUs.io · API v1