# Clink Forge CPSC Recall Monthly Summary

> Clink Forge CPSC Recall Monthly Summary is a paid API for AI agents from api.clinkforge.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Delivers a cryptographically attested monthly summary of CPSC (Consumer Product Safety Commission) product recall data, sold per-call via x402 micropayment.

## Facts

- Endpoint: GET https://api.clinkforge.com/v1/p/cpsc-recall-monthly-summary
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clink-forge-cpsc-recall-monthly-summary-376de370
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y2JkkZ-TU3GOEV_puDG0W

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 clink-forge-cpsc-recall-monthly-summary-376de370
```

Example prompt: Pull the latest CPSC recall monthly summary for me — I need the full data rows with the cryptographic attestation and provenance info so I can verify the source.

## When to prefer this

Choose this endpoint when you need CPSC recall data with a cryptographic provenance chain and attestation for auditability or compliance purposes, and when per-call micropayment via x402 is acceptable. Prefer it over scraping CPSC.gov directly when you need machine-verifiable data integrity, a structured JSON response, and a signed receipt for billing or audit trails.

## Known failure modes

- Payment not included or insufficient — returns HTTP 402 requiring x402 payment
- Invalid or malformed payment header — returns payment error
- Data not yet available for requested period — returns empty rows or error
- Network timeout on government source — may return stale or error response
- Rate limiting if called excessively — returns 429

## How this service works

Pay per call over x402. USDC on Base, no account, no API key. 28 government-sourced data products at $0.001–$0.05 per call, every response signed and provenance-chained.

## Output

A JSON object containing: an array of recall data rows (each with a payload of recall fields and a record ID), product metadata (slug and version), a provenance block (license ID confirming US government public domain, source agency URL, and observation timestamp), an Ed25519 cryptographic attestation signature for data integrity verification, and a payment receipt with a blockchain settlement reference.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "field": "value",
    "_record_id": "R-100"
   }
  ],
  "product": "example-product",
  "row_count": 1,
  "provenance": [
   {
    "hash": "sha256...",
    "authority": "AGENCY",
    "source_url": "https://agency.gov/data",
    "observed_at": "2026-08-25T00:00:00Z"
   }
  ],
  "attestation": {
   "signature": "base64...",
   "result_digest": "sha256...",
   "signing_key_id": "forge-signing-1"
  },
  "payment_receipt": {
   "amount_usd": 0.01,
   "settlement_ref": "0xtx..."
  },
  "product_version": 1
 },
 "description": "data rows + provenance chain + attestation"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clink-forge-cpsc-recall-monthly-summary-376de370/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.clinkforge.com](https://www.zero.xyz/host/api.clinkforge.com/llms.txt)
