# Parkland Archives – 1900 Sears Catalog Item Price Lookup

> Parkland Archives – 1900 Sears Catalog Item Price Lookup is a paid API for AI agents from history.parklandarchives.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns structured historical price and product data for a specific item from the 1900 Sears catalog, queried by item number.

## Facts

- Endpoint: GET https://history.parklandarchives.com/api/catalog-prices/item
- Price: $0.01/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-1900-sears-catalog-item-price-lookup-4f45b183
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z8mQZ4ePeUjxvk26ifv8h

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-1900-sears-catalog-item-price-lookup-4f45b183
```

Example prompt: Can you look up item number 3T400 in the Parkland Archives 1900 Sears catalog and tell me what it was, what it cost, and what category it fell under?

## When to prefer this

Use this endpoint when you need authoritative, structured historical price or product data from the 1900 Sears catalog and have a specific item number to query. It is ideal for economic history research, antique valuation context, educational fact-checking, or any application requiring machine-readable primary-source retail data from 1900. Prefer this over general web search when you need a verified, structured record rather than scraped or uncertain data.

## Known failure modes

- Item number not found: returns found: false with no record data
- Invalid or malformed item number: may return a 400 error or found: false
- Payment failure via x402 micropayment: returns 402 Payment Required before data is served
- Case sensitivity issues: item numbers are case-insensitive per schema but misformatted values may fail
- Network timeout or server error: returns 5xx with no data

## 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 indicating whether the item was found, with a record containing the item number, product name, category, price in USD, materials, source page number, catalog year, catalog season, source identifier (e.g. archive.org scan ID), a flag for price uncertainty, and timestamps. Returns found: false if the item number is not in the database.

## 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": [
      "item_number"
     ],
     "properties": {
      "item_number": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "found": true,
  "record": {
   "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-1900-sears-catalog-item-price-lookup-4f45b183/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)
