# Parkland Archives Bulk Catalog API

> Parkland Archives Bulk Catalog API is a paid API for AI agents from history.parklandarchives.com, paid per call via x402, $10/call, status unknown (last checked 2026-09-15).

Returns a bulk snapshot of verified historical retail price records from the 1900 Sears, Roebuck & Co. catalog and other primary sources, queryable by AI agents via x402 micropayments.

## Facts

- Endpoint: GET https://history.parklandarchives.com/api/bulk/catalog
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/parkland-archives-bulk-catalog-api-b06d0cd2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SctbGCYfqqsyz1ZMUiunY

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-bulk-catalog-api-b06d0cd2
```

Example prompt: Pull the full bulk catalog snapshot from Parkland Archives so I can see all the verified 1900 Sears, Roebuck & Co. retail prices — I want to analyze what household goods, books, and tools cost back then.

## When to prefer this

Choose this endpoint when you need bulk, structured, verified historical retail price data from primary sources like the 1900 Sears catalog — especially for economic research, inflation analysis, antique appraisal, or period-accurate pricing. Prefer this over general web scraping or LLM-generated estimates when data provenance and verification matter.

## Known failure modes

- Payment not completed via x402 — returns 402 Payment Required
- Invalid or malformed query parameters — returns 400 Bad Request
- Dataset temporarily unavailable — returns 503 Service Unavailable
- Rate limit exceeded — returns 429 Too Many Requests
- Partial dataset returned if extraction is still in progress (coverage note will indicate ~75% complete)

## 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 JSON object containing a dataset label, a snapshot date, a coverage note, the total record count (~15,401 verified records), and an array of records each including product name, category, price in USD, item number, source page, catalog year, catalog season, materials, an uncertainty flag, and a flag reason field.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "dataset": "1900 Sears, Roebuck & Co. Catalog No. 112 — verified retail prices",
  "records": [
   {
    "id": 44,
    "category": "books",
    "priceUsd": 0.6,
    "createdAt": "2026-07-14T21:51:18.595Z",
    "materials": "cloth",
    "uncertain": false,
    "flagReason": null,
    "itemNumber": "3T400",
    "sourcePage": 130,
    "catalogYear": 1900,
    "productName": "Practical Blacksmithing, Volume I",
    "catalogSeason": null,
    "sourceIdentifier": "catalogueno11200sear"
   }
  ],
  "recordCount": 15401,
  "coverageNote": "About three-quarters of the source catalog extracted to date; only verified records included. Future snapshots may add records at the same price.",
  "snapshotDate": "2026-07-15"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/parkland-archives-bulk-catalog-api-b06d0cd2/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)
