# Csfloat — 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 the latest CS2 skins posted on the CSFloat marketplace with real-time access to item names and prices. Stay ahead of new listings to find deals or track market trends as soon as items go live.

**Category:** Marketplaces | **Website:** [csfloat.com/](https://csfloat.com/) | **Docs:** [parse.bot/marketplace/730920da-0046-4693-bc62-bc9c3dcadaa8/csfloat-com-api](https://parse.bot/marketplace/730920da-0046-4693-bc62-bc9c3dcadaa8/csfloat-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-csfloat-com-api-730920da/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_newest_items

Get the 5 most recently listed buy-now items on the CSFloat marketplace. Returns each item's name and price in USD. The upstream API filters by minimum price in cents and sorts by most recent. The site enforces strict rate limiting; repeated calls within ~60 seconds may be temporarily blocked.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `min_price` | string | No | Minimum price filter in cents (e.g., '500' = $5.00, '10000' = $100.00). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-csfloat-com-api-730920da/get_newest_items \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"min_price":"<string>"}'
```
