# Toolsmith Recall Check

> Toolsmith Recall Check is a paid API for AI agents from toolsmith-api.dassad10.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Looks up active product recalls from CPSC and FDA for a given product by UPC, VIN, brand, or keyword

## Facts

- Endpoint: GET https://toolsmith-api.dassad10.workers.dev/t/recall/check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toolsmith-recall-check-b76caea1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7aBcHIbDR1CLPcT6Chn5g

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 toolsmith-recall-check-b76caea1
```

Example prompt: Can you check if there are any active recalls on a product with UPC 012345678905 — I want to know the hazard details and what the remedy is before I buy it.

## When to prefer this

Use this endpoint when you need a fast, keyless, pay-per-call recall check without setting up API credentials. Ideal for agents doing product safety due diligence, e-commerce compliance checks, or automotive pre-purchase verification. Prefer this over direct CPSC/FDA API calls when you need a unified multi-agency result in a single call with no authentication overhead.

## Known failure modes

- No recalls found returns total: 0 and an empty recalls array
- Invalid or malformed UPC/VIN returns a 400 error
- Ambiguous query may return unrelated recalls if keyword is too generic
- CPSC or FDA upstream outage may result in partial or empty results
- VIN must be a valid 17-character string; non-standard formats may fail to decode

## How this service works

Keyless pay-per-call APIs for AI agents: 30 tools across compliance, trade, safety, web and data. Pay per call with USDC on Base via x402. No account, no API key.

## Output

Returns the total number of recalls found, a count broken down by agency (e.g. CPSC, FDA-food), and an array of recall records each containing the recall ID, product name, hazard description, remedy, date, source agency, and a link to the official recall page.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "upc": {
       "type": "string",
       "description": "Product UPC/EAN barcode, 8-14 digits"
      },
      "vin": {
       "type": "string",
       "description": "Vehicle VIN, decoded via NHTSA vPIC"
      },
      "brand": {
       "type": "string",
       "description": "Manufacturer or brand name"
      },
      "query": {
       "type": "string",
       "description": "Product name or keyword"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "total": 3,
  "counts": {
   "CPSC": 2,
   "FDA-food": 1
  },
  "recalls": [
   {
    "id": "26561",
    "url": "https://www.cpsc.gov/...",
    "date": "2026-06-18",
    "hazard": "Choking hazard",
    "remedy": "Refund",
    "source": "CPSC",
    "product": "Example Swing"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toolsmith-recall-check-b76caea1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolsmith-api.dassad10.workers.dev](https://www.zero.xyz/host/toolsmith-api.dassad10.workers.dev/llms.txt)
