# Clink Forge FDA Recall Lookup

> Clink Forge FDA 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-15).

Fetches FDA recall records by ID, returning cryptographically attested data rows with full provenance chain, sold per call via x402 micropayment.

## Facts

- Endpoint: GET https://api.clinkforge.com/v1/p/fda-recall-lookup
- Price: $0.001/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-fda-recall-lookup-4ee99ae9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U1QFMSWh2wMyDwWV5cQOt

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-fda-recall-lookup-4ee99ae9
```

Example prompt: Look up FDA recall ID Z-0001-2024 and give me the full recall details along with the cryptographic provenance proof so I can verify the data source.

## When to prefer this

Choose this endpoint when you need FDA recall data with cryptographic provenance and attestation — ideal for compliance workflows, audit trails, or any context where data integrity must be verifiable. Prefer this over scraping FDA.gov directly when you need machine-readable, attested, per-call data with a payment receipt for accounting. Best suited for automated agents that require tamper-evident records rather than a human-browsable interface.

## Known failure modes

- Invalid or non-existent recall ID returns empty rows or 404-equivalent
- ID exceeding 40 characters rejected by schema validation
- Payment failure via x402 prevents data delivery
- Rate limiting if too many calls are made in quick succession
- Recall record not yet indexed returns stale or missing data

## 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 a JSON object containing: an array of data rows with field-value payloads and record IDs, product metadata (slug and version), provenance information (license ID, source URL, observed timestamp), an Ed25519 cryptographic attestation signature, and a payment receipt with settlement reference. This provides both the recall data and a verifiable audit trail.

## 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-fda-recall-lookup-4ee99ae9/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)
