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

> Get detailed 12-day weather forecasts for any location worldwide, with temperature, wind, rain, humidity, and UV index data updated three times daily. Search locations and retrieve comprehensive weather information suitable for travel planning, research, and general forecasting needs.

**Category:** Weather | **Website:** [weatherforecast.com/](https://weatherforecast.com/) | **Docs:** [parse.bot/marketplace/cd7d3373-e274-45bc-8ba9-760190680724/weatherforecast-com-api](https://parse.bot/marketplace/cd7d3373-e274-45bc-8ba9-760190680724/weatherforecast-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-weatherforecast-com-api-cd7d3373/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_forecast

Get detailed 12-day weather forecast for a specific location. Returns 3 forecast periods per day (AM, PM, Night) with temperature, wind, rain, humidity, UV index, and freeze level data. The slug is obtained from search_location.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The location slug (e.g. 'London', 'Tokyo-1', 'New-York-1'). Obtain from search_location endpoint. |

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

### search_location

Search for a location by name using the autocomplete service and return its canonical slug and forecast URL. The slug identifies the location for get_forecast. Returns the first matching result from the autocomplete index; partial names and common city names resolve to the most prominent match.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | City or country name to search for (e.g. 'London', 'Tokyo', 'Springfield'). |

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