# Avto — 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 car listings from Slovenia's top automotive marketplace, then access detailed vehicle information including pricing, specifications, and seller details. Get comprehensive data on available cars to compare options and make informed purchasing decisions.

**Category:** Automotive | **Website:** [avto.net/](https://avto.net/) | **Docs:** [parse.bot/marketplace/fd6f757f-4243-4268-bfa9-9a82cefafacb/avto-net-api](https://parse.bot/marketplace/fd6f757f-4243-4268-bfa9-9a82cefafacb/avto-net-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-avto-net-api-fd6f757f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### details

Get detailed information for a specific car ad from avto.net, including vehicle characteristics (year, mileage, fuel, engine, transmission, body type, color), equipment lists grouped by category, seller contact information, and ad metadata. The URL is obtained from search results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the car ad detail page on avto.net. Obtainable from search endpoint results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-avto-net-api-fd6f757f/details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search

Search for car ads on avto.net with optional filters for brand, model, year, and price. Returns paginated results with basic ad information including price, registration year, mileage, fuel type, and engine details. All filters are optional; omitting all returns all listed vehicles.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Car brand to filter by (e.g. Audi, BMW, Volkswagen, Mercedes-Benz, Renault). |
| `model` | string | No | Car model to filter by. Must correspond to the selected brand. |
| `page` | integer | No | Page number for pagination. |
| `price_max` | integer | No | Maximum price in EUR. |
| `price_min` | integer | No | Minimum price in EUR. |
| `year_max` | integer | No | Maximum production year filter. |
| `year_min` | integer | No | Minimum production year filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-avto-net-api-fd6f757f/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","model":"<string>","page":"<integer>","price_max":"<integer>","price_min":"<integer>","year_max":"<integer>","year_min":"<integer>"}'
```
