# Tupelo MS 100°F+ Days Archive

> Tupelo MS 100°F+ Days 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-15).

Returns yearly counts of days reaching 100°F or above in Tupelo, MS (1930–2024), with per-month breakdowns and U.S. tropical storm impacts, filterable by year or year range.

## Facts

- Endpoint: GET https://weather.parklandarchives.com/api/archive/hundred-degree-days
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tupelo-ms-100-f-days-archive-b927dbe7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OXKDOzc8Mb_UugW7Nv1s8

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 tupelo-ms-100-f-days-archive-b927dbe7
```

Example prompt: How many days hit 100°F or above in Tupelo, Mississippi each year from 1970 to 1990, and were any of those years affected by tropical storms?

## When to prefer this

Use this endpoint when you need historical extreme heat statistics (100°F+ days) specifically for Tupelo/Lee County, MS, with per-month granularity and tropical storm context. Prefer this over general weather APIs when the query is about multi-decade heat trends or specific year lookups in this Mississippi locale.

## Known failure modes

- Year out of range (below 1930 or above 2024): returns error or empty result
- Invalid 'from'/'to' combination where from > to: likely returns error
- Missing or malformed query parameters: may return all years or an error
- No data for sparse years in the historical record: empty counts returned

## 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

Returns yearly counts of days at or above 100°F in Tupelo (Lee County), MS, broken down by month, along with any U.S. tropical storm events that impacted that year, for the requested year or year range (1930–2024).

## 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": {
      "to": {
       "type": "integer",
       "maximum": 2100,
       "minimum": 1930
      },
      "from": {
       "type": "integer",
       "maximum": 2100,
       "minimum": 1930
      },
      "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/tupelo-ms-100-f-days-archive-b927dbe7/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)
