# Autocentrum — 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 current fuel prices at gas stations across Poland by searching by city, station name, or brand. Compare prices in real-time to locate the cheapest fuel options near you with easy navigation through paginated results.

**Category:** Automotive | **Website:** [www.autocentrum.pl/paliwa/](https://www.autocentrum.pl/paliwa/) | **Docs:** [parse.bot/marketplace/626ceb1f-3251-4645-a552-437ce3b758b4/autocentrum-pl-api](https://parse.bot/marketplace/626ceb1f-3251-4645-a552-437ce3b758b4/autocentrum-pl-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-autocentrum-pl-api-626ceb1f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_stations

Search fuel stations in Poland by city, station name, brand, or address. Returns a flat list of fuel price records — one entry per fuel type per station — ordered by most recently updated. Each record includes station name, brand, street address, city, fuel type, price in PLN, and a relative timestamp of the last price update. Results are paginated with 15 stations per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `query` | string | Yes | Search term matching city name, station brand, or street address (e.g. 'Warszawa', 'Shell Kraków', 'Orlen'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autocentrum-pl-api-626ceb1f/search_stations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
