# TablePulse Collection Value Estimator

> TablePulse Collection Value Estimator is a paid API for AI agents from tablepulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Estimates the current secondary-market value of a board-game collection, flagging out-of-print premiums, reprint risks, and condition-based price adjustments for each title.

## Facts

- Endpoint: GET https://tablepulse.theaslangroupllc.com/api/table/collection-value
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tablepulse-collection-value-estimator-7dfe26f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2vsxMDGdacIZVkjvYL6pW

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 tablepulse-collection-value-estimator-7dfe26f0
```

Example prompt: Can you estimate what my board game collection is worth on the secondary market? I have Gloomhaven (good condition), Twilight Imperium 4th Edition (like new), and Root (played condition) — flag any out-of-print premiums or reprint risks I should know about.

## When to prefer this

Choose this endpoint when a user wants to understand the resale or secondary-market value of specific board games they own, particularly when out-of-print status, reprint risk, or condition grading are relevant factors. Prefer this over generic web search when structured, per-title valuation with explicit caveats (estimates vs. appraisals) is needed. Best suited for sellers, collectors, or insured-inventory use cases.

## Known failure modes

- Unrecognized game title returns no estimate or a low-confidence placeholder
- Very obscure titles may have insufficient secondary-market data for a meaningful estimate
- Condition input missing or ambiguous may result in a generic estimate without adjustment
- Rate limiting or payment failure returns 402 or 429 error
- Network timeout on downstream web source lookups

## How this service works

Board-game collection valuation — out-of-print premiums, reprint-risk warnings, and condition factors for a list of titles. Honest estimates-only, never appraisals, grounded in current secondary-market web sources (never BoardGameGeek data).

## Output

Returns per-title estimated secondary-market value ranges, out-of-print premium indicators, reprint-risk warnings where applicable, and condition-based price adjustment factors — all framed as honest estimates grounded in current web sources, explicitly not formal appraisals and not sourced from BoardGameGeek.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | de | fr | es | it | ja | pt | ar"
      },
      "games": {
       "type": "string",
       "description": "Puerto Rico 1st edition, Brass Birmingham, Twilight Imperium 3rd edition (required — comma-separated titles, edition optional per item)"
      },
      "condition": {
       "type": "string",
       "description": "mostly shrinkwrapped | well-played (optional overall note)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "items": [
   {
    "title": "Puerto Rico 1st edition",
    "oop_status": "out of print",
    "secondary_market_estimate_range_usd": "$60-90"
   }
  ],
  "collection_total_estimate_range_usd": "$150-260"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tablepulse-collection-value-estimator-7dfe26f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tablepulse.theaslangroupllc.com](https://www.zero.xyz/host/tablepulse.theaslangroupllc.com/llms.txt)
