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

> Monitor GPU cluster availability and pricing across the market, search for specific listings, and calculate total portfolio value from GPUList.ai in real-time. Get detailed information on individual GPU clusters including specifications and current market rates.

**Category:** Marketplaces | **Website:** [gpulist.ai/](https://gpulist.ai/) | **Docs:** [parse.bot/marketplace/e7b16c20-c44c-4b1b-ad36-7f136bd4f889/gpulist-ai-api](https://parse.bot/marketplace/e7b16c20-c44c-4b1b-ad36-7f136bd4f889/gpulist-ai-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-gpulist-ai-api-e7b16c20/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_listings

Fetch all GPU cluster listings from the homepage. Supports filtering by GPU type, interconnect, and verification status. Returns listings sorted by most recently updated. Each listing includes pricing, location, GPU specs, and booking constraints.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `gpu_types` | string | No | JSON array of GPU type strings to filter by (e.g. '["H200", "A100 - 80GB"]') |
| `interconnects` | string | No | JSON array of interconnect network strings to filter by (e.g. '["RoCE v2", "Ethernet 400GbE"]') |
| `limit` | integer | No | Max results to return. |
| `verified_only` | boolean | No | Filter to only verified listings. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gpulist-ai-api-e7b16c20/get_all_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"gpu_types":"<string>","interconnects":"<string>","limit":"<integer>","verified_only":"<boolean>"}'
```

### get_listing_detail

Fetch full details of a single GPU cluster listing by its ID. Returns all available fields for the listing including additional_details text, booking constraints, and hardware specifications. The listing_id is obtained from get_all_listings results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | Listing ID (e.g. '876b9e6'). Obtain from get_all_listings results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gpulist-ai-api-e7b16c20/get_listing_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_id":"<string>"}'
```

### get_total_listings_value

Get the aggregate total dollar value of all currently active GPU cluster listings displayed on the platform homepage. Returns a formatted dollar string representing the combined value of all listed GPU capacity.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gpulist-ai-api-e7b16c20/get_total_listings_value \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
