# Clink Forge FDA Recall State Summary

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

Returns a cryptographically attested, per-state summary of FDA recall data, purchased per call via x402 micropayment.

## Facts

- Endpoint: GET https://api.clinkforge.com/v1/p/fda-recall-state-summary
- Price: $0.01/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-state-summary-9fe18180
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g_JxTrXSqLYMI4puvHBG5

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-state-summary-9fe18180
```

Example prompt: Pull the FDA recall state summary from Clink Forge — I need the latest breakdown of recalls by state with cryptographic provenance so I can verify the data source.

## When to prefer this

Choose this endpoint when you need FDA recall data at the state level AND require cryptographic provenance (Ed25519 attestation) to prove data integrity and origin — ideal for compliance, audit trails, or machine-to-machine workflows where trust in data provenance is mandatory. Prefer over raw FDA API scraping when you need a signed, pay-per-call data product with settlement receipts.

## Known failure modes

- Payment not included or invalid x402 header — 402 Payment Required
- Insufficient USDC balance for micropayment — payment failure
- Endpoint returns stale data if upstream FDA source has not been recently observed
- Schema stub suggests input parameters may not be fully documented, leading to uncertain query construction
- Network timeout or upstream FDA data pipeline unavailability

## 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 response containing an array of data rows (each with a payload and record ID), product metadata (slug and version), a provenance object (license ID 'US-GOV-PD', source URL, and observation timestamp), an Ed25519 cryptographic signature attesting data integrity, and a blockchain settlement reference from the x402 payment receipt.

## 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-fda-recall-state-summary-9fe18180/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)
