# Archive Weather Year Report — Lee County (Tupelo), MS

> Archive Weather Year Report — Lee County (Tupelo), MS is a paid API for AI agents from weather.parklandarchives.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns a full historical weather report for a given year (1930–2026) for Lee County, Mississippi, including monthly temperature extremes, 100°F+ day counts, and hotness rankings.

## Facts

- Endpoint: GET https://weather.parklandarchives.com/api/archive/year-report
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/archive-weather-year-report-lee-county-tupelo-ms-75b910bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5h5pqm32isiBphnHpI_rV

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 archive-weather-year-report-lee-county-tupelo-ms-75b910bb
```

Example prompt: Pull the full historical weather year report for Lee County, Tupelo Mississippi for the year 1936 — I want monthly temperature extremes, how many days hit 100°F or above, and how it ranks among the hottest years on record.

## When to prefer this

Choose this endpoint when you need a comprehensive year-level weather summary for Lee County (Tupelo), Mississippi, including monthly extremes, heat day counts, and historical rankings in a single call. Prefer this over the monthly search endpoint when the goal is a full-year overview rather than a filtered search across years. Best when the query is anchored to a specific calendar year rather than a decade trend or record extreme.

## Known failure modes

- Year outside valid range (1930–2026) returns a validation error
- Missing required 'year' query parameter results in a 400 bad request
- Payment failure or insufficient USDC balance blocks the request at the x402 payment layer
- Data unavailable for very recent months (2025–2026) may return partial records
- Non-integer year value causes schema validation failure

## 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 JSON object containing the requested year's full weather report for Lee County, MS: the year label, dataset identifier, hottest-year rank among all archived years, an array of monthly records (month number and highest temperature in °F), and the count of days reaching 100°F or above for that year.

## 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": [
      "year"
     ],
     "properties": {
      "year": {
       "type": "integer",
       "maximum": 2100,
       "minimum": 1930
      }
     }
    }
   },
   "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/archive-weather-year-report-lee-county-tupelo-ms-75b910bb/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)
