# GET/POST /v1/prices/latest

Latest Listing Pricelist (across marketplaces)

- Interactive docs: [https://cspriceapi.com/docs/api/prices-latest](https://cspriceapi.com/docs/api/prices-latest)
- OpenAPI YAML: [https://cspriceapi.com/openapi.yaml](https://cspriceapi.com/openapi.yaml)
- Data coverage: [https://cspriceapi.com/docs/data-coverage](https://cspriceapi.com/docs/data-coverage)

### GET /v1/prices/latest

Latest listing prices across marketplaces (Basic)

Returns the latest prices for all items across supported marketplaces
(YouPin, Buff163, C5Game, EcoSteam, SkinBaron, Skinport, CSFloat,
Lisskins, DMarket, ShadowPay, Waxpeer, Market.CSGO).

Most prices update about every 5 minutes, depending on the marketplace.
Optional `markets` filters which sources are included. Prefer gzip —
full snapshots are large. Prices use each marketplace's native currency.


**Parameters**

| Name | In | Required | Description |
|---|---|---|---|
| `markets` | query | optional | Comma-separated marketplace slugs (e.g. `youpin,buff163`). Omit to include all listing marketplaces your key is allowed to access.  |

```bash
curl -s "https://api.cspriceapi.com/v1/prices/latest" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

### POST /v1/prices/latest

Latest prices for selected items (Basic)

Same latest-price data as `GET /v1/prices/latest`, filtered to up to
**100** requested `market_hash_name` values.

Most prices update about every 5 minutes, depending on the marketplace.
Optional `markets` limits which sources are loaded. Missing items appear
in `errors` (`not_found`); if none match, the API returns `404`.


**Parameters**

| Name | In | Required | Description |
|---|---|---|---|
| `markets` | query | optional | Optional CSV marketplace filter if not sent in the JSON body. |

```bash
curl -s "https://api.cspriceapi.com/v1/prices/latest" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"items":["AK-47 | Redline (Field-Tested)"]}'
```

---

Full request/response schemas: import [openapi.yaml](https://cspriceapi.com/openapi.yaml) or use the Scalar UI on the HTML page.
