# Lee County (Tupelo) Monthly Weather Archive

> Lee County (Tupelo) Monthly Weather Archive is a paid API for AI agents from weather.parklandarchives.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns monthly historical weather records (temperature extremes, precipitation, snowfall) for Lee County, MS, spanning 1930–2026, filterable by year and month.

## Facts

- Endpoint: GET https://weather.parklandarchives.com/api/archive/lee-county-monthly
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lee-county-tupelo-monthly-weather-archive-d51b5134
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pVQ04Qydz1R59k3tgvXtl

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability lee-county-tupelo-monthly-weather-archive-d51b5134
```

Example prompt: Pull the monthly weather records for Lee County (Tupelo), MS for June 1985 — I want to see the temperature extremes, precipitation, and snowfall from the parklandarchives historical archive.

## When to prefer this

Use this endpoint when you need raw monthly historical weather records for Lee County (Tupelo), Mississippi for a specific year and/or month. Prefer this over the sibling comparison, extremes, or trend-analysis endpoints when you want the underlying time-series data rather than pre-computed summaries, rankings, or comparisons. Best for agents building custom analysis, charting historical trends, or answering questions about specific months.

## Known failure modes

- Year out of range (below 1930 or above 2100) — likely 400 or validation error
- Month out of range (below 1 or above 12) — likely 400 or validation error
- No data available for the requested period — empty result set or 404
- Payment failure (x402) — 402 Payment Required if USDC not provided
- Limit set to 0 or exceeds 200 — validation error

## How this service works

96 years (1930–2026) of hand-archived historical weather for Lee County (Tupelo), Mississippi — monthly extremes, 100°F+ day counts, records, and trends. Pay-per-call API for AI agents via x402.

## Output

A normalized JSON object containing monthly weather data for the requested year/month range in Lee County (Tupelo), MS, including high and low temperature extremes, precipitation totals, snowfall amounts, and special markers for trace amounts or missing data entries.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "year": {
       "type": "integer",
       "maximum": 2100,
       "minimum": 1930
      },
      "limit": {
       "type": "integer",
       "maximum": 200,
       "minimum": 1
      },
      "month": {
       "type": "integer",
       "maximum": 12,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lee-county-tupelo-monthly-weather-archive-d51b5134/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from weather.parklandarchives.com](https://www.zero.xyz/host/weather.parklandarchives.com/llms.txt)
