# eBay (Germany) — 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 eBay.de listings with flexible filters to find the products you want, view detailed item information, and check seller feedback ratings to make informed buying decisions. Track sold items and monitor pricing trends across any category.

**Category:** Marketplaces | **Website:** [ebay.de/](https://ebay.de/) | **Docs:** [parse.bot/marketplace/ab1c7a7f-4547-485b-90bf-728b26acdc52/ebay-de-api](https://parse.bot/marketplace/ab1c7a7f-4547-485b-90bf-728b26acdc52/ebay-de-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-de-api-ab1c7a7f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Retrieve full details for a specific eBay listing by item ID. Returns title, price, condition, seller information including feedback count and positive rating percentage, and sold count when available. Private seller listings may have limited seller information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `item_id` | string | Yes | eBay item ID (numeric string from search_listings results, e.g. '227377212199') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ebay-de-api-ab1c7a7f/get_listing_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"item_id":"<string>"}'
```

### get_seller_feedback

Get seller feedback summary and detailed ratings for an eBay.de seller. Returns positive, neutral, and negative feedback counts across 1-month, 6-month, and 12-month time periods, plus membership registration date and country.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `username` | string | Yes | Seller username (e.g. 'medion') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ebay-de-api-ab1c7a7f/get_seller_feedback \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"username":"<string>"}'
```

### search_listings

Search for active or sold listings on eBay.de. Returns paginated results including item IDs, titles, prices, conditions, and URLs. When searching sold listings, includes sold dates. Paginates via page number parameter. The results include items matching the keyword in the specified category with optional seller and VRAM filters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Category ID to filter results (e.g. '27386' for Graphics Cards, '183454' for Trading Card Games) |
| `page` | integer | No | Page number for pagination |
| `query` | string | Yes | Search keyword (e.g. 'RTX 4060', 'iPhone 15') |
| `seller` | string | No | Seller username to filter by |
| `sold` | boolean | No | Whether to search only sold/completed listings |
| `vram` | string | No | VRAM filter for GPU category searches (e.g. '12 GB'). Only effective when category_id is '27386'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ebay-de-api-ab1c7a7f/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","page":"<integer>","query":"<string>","seller":"<string>","sold":"<boolean>","vram":"<string>"}'
```
