# Hydro Chmi — 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.

> Monitor real-time water conditions across 562+ Czech river stations by accessing live water levels, flow rates, temperatures, and flood alerts. Search and track specific stations to get detailed hydrological data and historical time series information from the Czech Hydrometeorological Institute.

**Category:** Weather | **Website:** [hydro.chmi.cz/](https://hydro.chmi.cz/) | **Docs:** [parse.bot/marketplace/91c6945e-e62e-4b8a-ac9c-67b344003aea/hydro-chmi-cz-api](https://parse.bot/marketplace/91c6945e-e62e-4b8a-ac9c-67b344003aea/hydro-chmi-cz-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-hydro-chmi-cz-api-91c6945e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_station_detail

Get detailed station data including metadata, measured data table (datetime, water height, flow rate, temperature), SPA flood alert levels, and graph time series. Temperature data availability varies by station. Forecast data is included only for category A stations when available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `station_id` | string | Yes | Station sequence ID. Get IDs from the get_stations endpoint (e.g., '307053', '307076'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hydro-chmi-cz-api-91c6945e/get_station_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"station_id":"<string>"}'
```

### get_stations

List monitoring stations with their current measurements. Returns station metadata, current water level, flow rate, status, and tendency. Supports pagination (50 per page) or retrieving all stations at once. Pagination via integer page numbers (1-12); 'all' returns the full station list in one call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | string | No | Page number (1-12) or 'all' for all stations. Each page has ~50 stations. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hydro-chmi-cz-api-91c6945e/get_stations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<string>"}'
```

### search_stations

Search monitoring stations by name, river, or region. Performs case-insensitive substring matching across station names, river names, and region names. Fetches all stations and filters locally, so results reflect the full network.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query to match against station name, river name, or region (e.g., 'Labe', 'Praha', 'Vltava') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hydro-chmi-cz-api-91c6945e/search_stations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
