# Pl Fuelo — 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 real-time fuel prices and gas station information across Poland by accessing comprehensive pricing data from Fuelo.net's network of retail stations. Compare prices and locate specific station details to make informed decisions about where to refuel.

**Category:** Automotive | **Website:** [pl.fuelo.net/gasstation/id/88867](https://pl.fuelo.net/gasstation/id/88867) | **Docs:** [parse.bot/marketplace/cbe7acb2-e0f8-46ed-b91d-4ba561070a70/pl-fuelo-net-api](https://parse.bot/marketplace/cbe7acb2-e0f8-46ed-b91d-4ba561070a70/pl-fuelo-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-pl-fuelo-net-api-cbe7acb2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_station_prices

Retrieve current fuel prices and station details for a specific gas station by its Fuelo station ID. Returns station name, brand, full address with coordinates, and a list of available fuel types with their per-liter prices in PLN. Prices are user-reported and include the submission timestamp.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `station_id` | string | Yes | Numeric Fuelo station ID (e.g. 88867). Found in Fuelo station page URLs as /gasstation/id/{station_id}. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pl-fuelo-net-api-cbe7acb2/get_station_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"station_id":"<string>"}'
```
