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

> Search and browse marketplace listings across Ricardo.ch, Switzerland's largest online marketplace, with powerful filtering by category and sorting options including price, relevance, recency, and auction activity. Quickly discover products tailored to your interests and find the best deals based on your preferred search criteria.

**Category:** Marketplaces | **Website:** [www.ricardo.ch/](https://www.ricardo.ch/) | **Docs:** [parse.bot/marketplace/3498ba78-0749-4273-8ef1-07f611da1bde/ricardo-ch-api](https://parse.bot/marketplace/3498ba78-0749-4273-8ef1-07f611da1bde/ricardo-ch-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-ricardo-ch-api-3498ba78/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_listings

Search marketplace listings by keyword, optionally filtered by category and sorted by price or other criteria. Returns paginated results with 60 listings per page. The response includes category facets with slugs that can be used for subsequent filtered searches. Each listing includes pricing (auction bid price and/or buy-now price), condition, brand, seller, and shipping information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | No | Category slug to filter results, in the format '{name}-{id}' (e.g. 'notebooks-39272', 'sports-41875'). Available slugs are returned in the 'categories' array of the response. |
| `page` | integer | No | Page number for pagination (1-indexed). Each page returns up to 60 results. |
| `query` | string | Yes | Search keyword(s) to find listings. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ricardo-ch-api-3498ba78/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>","page":"<integer>","query":"<string>","sort":"<string>"}'
```
