# Parkland Archives – Historical Catalog Prices

> Parkland Archives – Historical Catalog Prices 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-14).

Returns structured price and product records from historical catalogs (e.g. 1900 Sears) filtered by year, category, and keyword search

## Facts

- Endpoint: GET https://history.parklandarchives.com/api/catalog-prices
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/parkland-archives-historical-catalog-prices-b2aa380a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SkPFkgphBT4jcHeq7SFuy

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-historical-catalog-prices-b2aa380a
```

Example prompt: Search the Parkland Archives 1900 catalog for books and return the first 10 results with their prices and materials.

## When to prefer this

Choose this endpoint when you need structured, verified historical retail price data from primary source catalogs (e.g. 1900 Sears) with rich metadata like source page, item number, and materials. It is ideal for economic research, antique valuation, inflation studies, and any use case requiring queryable, paginated access to verified archival pricing data rather than scraped or estimated figures.

## Known failure modes

- No records found for the specified year or category — returns empty records array with total: 0
- Invalid year integer format — schema validation error
- limit exceeds maximum of 200 — validation rejection
- Payment not processed via x402 — 402 Payment Required response
- Network or service unavailability — 5xx error

## 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 total record count, pagination info (limit, offset), and an array of matching catalog records — each with product name, USD price, category, materials, item number, source page, catalog year, catalog season, source identifier, and uncertainty/flag fields.

## 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": 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"
   }
  ]
 }
}
```

## More

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