# eBay (Netherlands) — 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 for recently sold items on eBay Netherlands to discover what similar products have sold for, including their final prices, conditions, and other listing details. Use this information to research market values, set competitive pricing, or track sales trends for items you're interested in buying or selling.

**Category:** Marketplaces | **Website:** [www.ebay.nl/](https://www.ebay.nl/) | **Docs:** [parse.bot/marketplace/27197766-3e94-4369-9984-541507fdc9c3/ebay-nl-api](https://parse.bot/marketplace/27197766-3e94-4369-9984-541507fdc9c3/ebay-nl-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-ebay-nl-api-27197766/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_sold_items

Search completed/sold listings on eBay Netherlands. Returns items that have actually sold, including their final sale price, sold date, condition, and shipping cost. Results are auto-iterated across pages. Useful for market research and price comparison of previously sold goods.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | eBay category ID to narrow results (e.g. '9355' for cell phones). When omitted, searches all categories. |
| `page` | integer | No | Page number of results to retrieve. |
| `query` | string | Yes | Search keywords for sold items (e.g. 'iphone 14', 'nintendo switch'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ebay-nl-api-27197766/search_sold_items \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>","query":"<string>"}'
```
