# Parkland Archives Almanac Records

> Parkland Archives Almanac Records is a paid API for AI agents from history.parklandarchives.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Retrieves structured historical statistics from verified primary sources (1900 World Almanac, Sears catalog, etc.) filterable by year, category, and keyword search

## Facts

- Endpoint: GET https://history.parklandarchives.com/api/almanac-records
- 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/parkland-archives-almanac-records-4a505eb4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w2ozWaEcEBQLZ1p8aPIEG

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 parkland-archives-almanac-records-4a505eb4
```

Example prompt: Pull up Parkland Archives almanac records for US trade statistics from 1895 to 1905, limit to 20 results.

## When to prefer this

Choose this endpoint when you need structured, citation-ready historical statistics from verified primary sources (World Almanac circa 1900, Sears catalog prices), especially when you need to filter by specific year ranges or categories like trade, elections, population, finance, postal rates, or military. Prefer this over general web search when you need reliable, structured numeric data with provenance (source page and document identifier) rather than unverified narrative content.

## Known failure modes

- No records found for very narrow year/category/search combinations — returns empty records array with total:0
- Invalid or out-of-range year values may return validation errors
- Exceeding limit maximum of 200 returns an error
- Payment failure via x402 micropayment prevents access to data
- Network timeout if the archive database is under load

## How this service works

Structured historical data from verified primary sources — 1900 Sears catalog prices, World Almanac statistics, and more. Queryable by AI agents via x402 micropayments on Base.

## Output

A paginated JSON response containing matching historical records, each with: a record name, the year the statistic refers to, a numeric value, its unit (e.g. USD, persons), category, source page number, source document identifier, an uncertainty flag, and a flag reason if applicable. Also includes total count, limit, and offset for pagination.

## 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"
      },
      "limit": {
       "type": "integer",
       "default": 50,
       "maximum": 200
      },
      "offset": {
       "type": "integer",
       "default": 0
      },
      "search": {
       "type": "string"
      },
      "year_to": {
       "type": "integer"
      },
      "category": {
       "type": "string"
      },
      "year_from": {
       "type": "integer"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "limit": 5,
  "total": 1,
  "offset": 0,
  "records": [
   {
    "id": 612,
    "unit": "USD",
    "year": 1899,
    "value": 1204123134,
    "category": "trade",
    "createdAt": "2026-07-15T18:20:04.101Z",
    "uncertain": false,
    "flagReason": null,
    "recordName": "United States exports of domestic merchandise, 1899",
    "sourcePage": 214,
    "sourceIdentifier": "worldalmanacency1900newy"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/parkland-archives-almanac-records-4a505eb4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from history.parklandarchives.com](https://www.zero.xyz/host/history.parklandarchives.com/llms.txt)
