# eBay (France) — 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.

> Find completed items sold on eBay France to compare historical sale prices, dates, and listing details for research or valuation purposes. Quickly search and retrieve past transaction data to understand market trends and item values.

**Category:** Marketplaces | **Website:** [www.ebay.fr/](https://www.ebay.fr/) | **Docs:** [parse.bot/marketplace/40dcfd65-c3dc-4dfb-8bcb-00710412f9cc/ebay-fr-api](https://parse.bot/marketplace/40dcfd65-c3dc-4dfb-8bcb-00710412f9cc/ebay-fr-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-fr-api-40dcfd65/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_sold_items

Search completed/sold listings on eBay France. Returns items that have already been sold, including their final sale price, sold date, condition, and shipping cost. Results are ordered by most recently sold. Each page returns up to 60 items; results are auto-iterated by the SDK.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | eBay category ID to filter results (e.g. '9355' for cell phones). |
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keywords for sold items (e.g. 'iphone 13', 'nintendo switch'). |

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