# Gpus — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Compare GPU rental prices across 25+ cloud providers in real-time, filtering by GPU model, provider, and region to find the best deals for your compute needs. Get normalized pricing data that makes it easy to see which provider offers the best value for your specific GPU configuration.

**Category:** Developer Tools | **Website:** [gpus.io/](https://gpus.io/) | **Docs:** [parse.bot/marketplace/b0d921fd-bc72-4af2-8ed0-72e537f7849f/gpus-io-api](https://parse.bot/marketplace/b0d921fd-bc72-4af2-8ed0-72e537f7849f/gpus-io-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-gpus-io-api-b0d921fd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_gpu_pricing

Returns all GPU cloud rental pricing configurations from gpus.io. Each record represents one rentable GPU configuration from a specific provider with exact per-GPU-hour pricing in USD. Supports optional filters for GPU model name, provider name, and region code. Without filters, returns all configurations (2000+). A single upstream request fetches the full dataset; no pagination is needed.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `gpu_model` | string | No | Case-insensitive substring filter for GPU model name or slug (e.g. 'H100', 'A100', 'RTX 4090'). Omitting returns all GPU models. |
| `provider` | string | No | Case-insensitive substring filter for provider name or ID (e.g. 'lambda', 'vast', 'hyperstack'). Omitting returns all providers. |
| `region` | string | No | ISO 3166-1 alpha-2 country code filter (e.g. 'us', 'ca', 'de'). Omitting returns all regions. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gpus-io-api-b0d921fd/get_gpu_pricing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"gpu_model":"<string>","provider":"<string>","region":"<string>"}'
```
