# Autoplius — 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 cars and access detailed information like pricing, specifications, and listings from Autoplius.lt, Lithuania's largest vehicle classifieds marketplace. Find exactly what you're looking for with comprehensive car details all in one place.

**Category:** Automotive | **Website:** [autoplius.lt/](https://autoplius.lt/) | **Docs:** [parse.bot/marketplace/958bd99b-5a10-4d43-873f-ff0393864b7b/autoplius-lt-api](https://parse.bot/marketplace/958bd99b-5a10-4d43-873f-ff0393864b7b/autoplius-lt-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-autoplius-lt-api-958bd99b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_car_details

Get detailed information for a specific car listing including specifications, images, seller info, and description. Requires the full URL of the listing page from autoplius.lt. Parameters are returned as key-value pairs in Lithuanian. Returns stale_input with kind input_not_found when the listing URL returns 404 or 410.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the car listing page on autoplius.lt (e.g. https://autoplius.lt/skelbimai/<listing-slug>.html). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autoplius-lt-api-958bd99b/get_car_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_cars

List car listings from the main passenger cars section of autoplius.lt. Returns paginated results with approximately 20 listings per page. Listings include both for-sale and rental vehicles. Rental listings display per-day prices. Pagination uses page_nr parameter on the site.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autoplius-lt-api-958bd99b/search_cars \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```
