# Cne — 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.

> Track current gasoline and diesel prices across all Mexican gas stations by state and municipality, helping you find the best fuel deals in real time. Compare Regular and Premium gasoline options alongside diesel prices at specific locations to optimize your fuel spending.

**Category:** Government & Public Data | **Website:** [www.cne.gob.mx/ConsultaPrecios/GasolinasyDiesel/GasolinasyDiesel.html](https://www.cne.gob.mx/ConsultaPrecios/GasolinasyDiesel/GasolinasyDiesel.html) | **Docs:** [parse.bot/marketplace/e96a107b-0beb-4087-89e7-931f6ac675e6/cne-gob-mx-api](https://parse.bot/marketplace/e96a107b-0beb-4087-89e7-931f6ac675e6/cne-gob-mx-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-cne-gob-mx-api-e96a107b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_fuel_prices

Get fuel prices for all gas stations across all municipalities in a given state. Iterates through each municipality and collects all station prices. May take 10-30 seconds depending on the number of municipalities in the state.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `entidad_id` | string | Yes | State ID, zero-padded 2-digit string (01-32). Use get_states to find valid IDs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cne-gob-mx-api-e96a107b/get_all_fuel_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"entidad_id":"<string>"}'
```

### get_fuel_prices

Get current fuel prices for all gas stations in a specific municipality. Returns prices for Regular gasoline, Premium gasoline, and Diesel at each station.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `entidad_id` | string | No | State ID, zero-padded 2-digit string (01-32). |
| `municipio_id` | string | No | Municipality ID, zero-padded 3-digit string. Use get_municipalities to find valid IDs for a state. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cne-gob-mx-api-e96a107b/get_fuel_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"entidad_id":"<string>","municipio_id":"<string>"}'
```

### get_municipalities

Get all municipalities for a given state. Use these municipality IDs together with the state ID to query fuel prices via get_fuel_prices or get_all_fuel_prices.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `entidad_id` | string | No | State ID, zero-padded 2-digit string (01-32). Use get_states to find valid IDs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cne-gob-mx-api-e96a107b/get_municipalities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"entidad_id":"<string>"}'
```

### get_states

Get all 32 Mexican states (entidades federativas) with their IDs. Use these IDs to query municipalities and fuel prices.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cne-gob-mx-api-e96a107b/get_states \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
