# Computeprices — 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.

> Access data from computeprices.com.

**Category:** Developer Tools | **Website:** [computeprices.com/](https://computeprices.com/) | **Docs:** [parse.bot/marketplace/8a1bd1ab-feca-40ec-8f10-0509edfa33da/computeprices-com-api](https://parse.bot/marketplace/8a1bd1ab-feca-40ec-8f10-0509edfa33da/computeprices-com-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-computeprices-com-api-8a1bd1ab/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_gpu_prices

Returns all GPU cloud rental pricing records from ComputePrices.com. Each record represents a specific (provider, GPU model, GPU count, pricing type) combination with its per-GPU hourly price. Approximately 900-1000 records are returned covering 65+ providers and 50+ GPU models. Optionally filter by pricing type or GPU model slug. One network round-trip.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `gpu_model` | string | No | Filter by GPU model slug (e.g. 'h100', 'a100sxm', 'l40s'). Slugs are returned in the gpu_slug field of each record. Omitting returns all GPU models. |
| `pricing_type` | string | No | Filter by pricing model. Omitting returns all pricing types. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-computeprices-com-api-8a1bd1ab/get_gpu_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"gpu_model":"<string>","pricing_type":"<string>"}'
```
