# Donedeal — 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 filter used vehicle listings from DoneDeal including cars, caravans, and more with keyword search and sorting options. Find the perfect vehicle by browsing current listings across different sections all in one place.

**Category:** Automotive | **Website:** [donedeal.ie/](https://donedeal.ie/) | **Docs:** [parse.bot/marketplace/f72f58d6-c94f-4e8d-aeb0-a1a7bee92368/donedeal-ie-api](https://parse.bot/marketplace/f72f58d6-c94f-4e8d-aeb0-a1a7bee92368/donedeal-ie-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-donedeal-ie-api-f72f58d6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_listings

Search for used vehicle listings on DoneDeal.ie. Supports filtering by price and mileage ranges, keyword search, sorting, and pagination. Returns a list of vehicle ads with details including price, year, mileage, engine type, location, seller info, and images. Paginates internally up to the requested limit. Each ad's mileage may be null when not provided by the seller.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of listings to return. |
| `mileage_from` | integer | No | Minimum mileage filter in km. |
| `mileage_to` | integer | No | Maximum mileage filter in km. |
| `price_from` | integer | No | Minimum price filter in Euro. |
| `price_to` | integer | No | Maximum price filter in Euro. |
| `query` | string | No | Keyword search term (e.g. 'golf', 'campervan', 'toyota'). |
| `section` | string | No | Vehicle section to search in. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-donedeal-ie-api-f72f58d6/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","mileage_from":"<integer>","mileage_to":"<integer>","price_from":"<integer>","price_to":"<integer>","query":"<string>","section":"<string>","sort":"<string>"}'
```
