# Lee County (Tupelo, MS) Weather Record Extremes API

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

Returns the top-N all-time weather record extremes for Lee County (Tupelo), MS, including hottest days, coldest highs, biggest rains, snowiest months, and most 100°F days, with dates and source citations.

## Facts

- Endpoint: GET https://weather.parklandarchives.com/api/archive/records
- Price: $0.05/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-ms-weather-record-extremes-api-5c18da38
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_14fCAwUIItoRN7Kl-YPs7

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-ms-weather-record-extremes-api-5c18da38
```

Example prompt: What are the top 10 hottest days ever recorded in Lee County (Tupelo), MS? Pull the all-time record extremes for hottest_days with dates and source citations.

## When to prefer this

Use this endpoint when you need ranked, citeable all-time extreme weather records for Lee County (Tupelo), MS — specifically for superlative queries like 'hottest ever', 'most rainfall in a day', or 'snowiest month'. Prefer this over the monthly search or trend analysis endpoints when the user wants a leaderboard-style answer with dates and sources rather than a time-series or comparative analysis.

## Known failure modes

- Missing required 'metric' query parameter returns a 400 Bad Request
- Invalid metric value not in the allowed enum returns a 400 error
- 'top' value outside 1–25 range returns a 400 validation error
- Payment not provided or insufficient results in 402 Payment Required
- Upstream data unavailable may return 503

## 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 ranked list of up to 25 all-time extreme weather records for Lee County (Tupelo), MS, for the requested metric (e.g. hottest days, biggest 24-hour rains). Each record includes the specific date of occurrence, the measured value, and a source citation for verification.

## 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": [
      "metric"
     ],
     "properties": {
      "top": {
       "type": "integer",
       "maximum": 25,
       "minimum": 1
      },
      "metric": {
       "enum": [
        "hottest_days",
        "coldest_daytime_highs",
        "coldest_lows",
        "biggest_24hr_rains",
        "wettest_months",
        "biggest_24hr_snows",
        "snowiest_months",
        "most_100f_days"
       ],
       "type": "string"
      }
     }
    }
   },
   "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-ms-weather-record-extremes-api-5c18da38/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)
