# Wttr — 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 weather conditions and multi-day forecasts for any location worldwide in real-time. Get detailed weather data including temperature, precipitation, wind speed, and more to plan your day or trip.

**Category:** Weather | **Website:** [wttr.in/](https://wttr.in/) | **Docs:** [parse.bot/marketplace/d6fd6ddf-d747-4b8d-b792-44cd820bdbfc/wttr-in-api](https://parse.bot/marketplace/d6fd6ddf-d747-4b8d-b792-44cd820bdbfc/wttr-in-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-wttr-in-api-d6fd6ddf/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_current_weather

Get only the current weather conditions for a given location without forecast data. Returns a flat object with temperature, wind, humidity, pressure, visibility, UV index, and cloud cover. Lighter alternative to get_weather when forecast is not needed.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | Yes | Location to get weather for. Accepts city names (e.g. 'New York', 'London'), coordinates (e.g. '48.8566,2.3522'), airport codes (e.g. 'JFK'), or landmarks. |

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

### get_weather

Get current weather conditions and a 3-day forecast with hourly breakdowns for a given location. Returns temperature, wind, humidity, precipitation, UV index, astronomy data (sunrise/sunset/moon), and hourly forecasts for each day. The location resolves to the nearest weather station area.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | Yes | Location to get weather for. Accepts city names (e.g. 'New York', 'London'), coordinates (e.g. '48.8566,2.3522'), airport codes (e.g. 'JFK'), or landmarks. |

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