# Metro (Slovakia) — 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.

> Check current fuel prices at Metro Cash & Carry gas stations throughout Slovakia and locate available stores in your area. Get real-time pricing information to find the best deals at participating Metro locations.

**Category:** Finance & Markets | **Website:** [www.metro.sk/predajne/ivanka-pri-dunaji](https://www.metro.sk/predajne/ivanka-pri-dunaji) | **Docs:** [parse.bot/marketplace/0552820a-c9d2-4967-bff9-8993eaee4872/metro-sk-api](https://parse.bot/marketplace/0552820a-c9d2-4967-bff9-8993eaee4872/metro-sk-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-metro-sk-api-0552820a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_fuel_prices

Retrieve current fuel prices for a specific Metro store's gas station. Returns prices for all available fuel types (Natural 95, Nafta diesel, Super benzín 95, Super nafta) with their EUR/l pricing. Each store page is fetched and parsed for the fuel-prices section.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `store_slug` | string | No | URL slug identifying the Metro store. Lowercase letters, digits, and hyphens only (e.g. 'ivanka-pri-dunaji', 'zilina', 'devinska-nova-ves', 'nitra', 'zvolen', 'kosice'). Obtain from list_stores endpoint. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-metro-sk-api-0552820a/get_fuel_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"store_slug":"<string>"}'
```

### list_stores

List all Metro stores in Slovakia that have gas stations. Returns store slugs and geographic coordinates. Use the store_slug values as input to get_fuel_prices.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-metro-sk-api-0552820a/list_stores \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
