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

> Retrieve structured weather forecasts from wetter.com, including daily high and low temperatures in Celsius across a 16-day outlook. Supports location-based lookups for cities and regions.

**Category:** Weather | **Website:** [wetter.com/](https://wetter.com/) | **Docs:** [parse.bot/marketplace/f831fa7b-6546-45df-8e1f-adebcdf26f9f/wetter-com-api](https://parse.bot/marketplace/f831fa7b-6546-45df-8e1f-adebcdf26f9f/wetter-com-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-wetter-com-api-f831fa7b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_forecast

Get 16-day weather forecast for a given location. Searches wetter.com for the location and returns daily high and low temperatures in Celsius for each forecast day. Returns up to 16 days of forecast data starting from today. The location search supports German and international city names.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | Yes | City name or location identifier (e.g. "Berlin", "München", "London"). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wetter-com-api-f831fa7b/get_forecast \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>"}'
```
