# Clink Forge CPSC Recall Lookup

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

Looks up U.S. Consumer Product Safety Commission (CPSC) product recall records by ID, returning data rows with cryptographic provenance and attestation.

## Facts

- Endpoint: GET https://api.clinkforge.com/v1/p/cpsc-recall-lookup
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clink-forge-cpsc-recall-lookup-2228fedd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d5oM_8_s9XQnhl4QOktbR

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-lookup-2228fedd
```

Example prompt: Can you look up CPSC recall ID 20-123 and give me the official recall details along with the cryptographic proof that the data came from a government source?

## When to prefer this

Choose this endpoint when you need CPSC recall data with a verifiable cryptographic provenance chain — particularly for compliance, audit, or supply chain contexts where you must prove the data originated from a U.S. government source. Prefer it over scraping CPSC.gov directly when machine-readable attestation and a signed receipt are required, or when operating in an autonomous agent pipeline that needs per-call micropayment billing with no subscription.

## Known failure modes

- Missing or invalid 'id' query parameter returns a validation error
- Recall ID not found in dataset returns empty rows array
- Payment failure via x402 protocol prevents data delivery
- ID exceeds 40-character length limit returns schema validation error
- Temporary upstream data unavailability may return a service error

## 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

Returns an array of recall data rows (field/value pairs) keyed by record_id, along with a product slug and version, a provenance object including license ID (US-GOV-PD), the original government source URL, and an observation timestamp, plus an Ed25519 cryptographic signature attesting to data integrity, and a blockchain-settled payment receipt reference.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "maxLength": 40
      }
     },
     "additionalProperties": false
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## 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-lookup-2228fedd/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)
