# Interzoid Product Recall Information API

> Interzoid Product Recall Information API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Looks up product recall information including hazard details, recall dates, and issuing authority for a given product name, brand, or category

## Facts

- Endpoint: GET https://api.interzoid.com/getproductrecallinfo
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-product-recall-information-api-966f8aa2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pUaFofbHABxPro9IIPhGv

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 interzoid-product-recall-information-api-966f8aa2
```

Example prompt: Can you check if the Peloton Tread+ has any active product recalls, including what the hazard is and when it was recalled?

## When to prefer this

Use this endpoint when you need to quickly check whether a specific consumer product, brand, or category has an active recall, especially when you need hazard details and the issuing regulatory authority. Prefer this over general web search when you need structured, machine-readable recall data suitable for integration into compliance workflows, CRM enrichment, or automated safety checks.

## Known failure modes

- No recall found for the given product — returns empty or no-match result
- Invalid or missing 'lookup' query parameter — returns error code
- Payment not provided or insufficient — returns 402 Payment Required
- Product name too generic — may return unrelated or no results
- API credits exhausted — returns credits:0 with error

## How this service works

Retrieve product recall information for a given product, brand, or category including recall date, hazard description, remedy, and regulatory authority.

## Output

Returns a JSON object with the product name, a description of the hazard associated with the recall, the recall date, the issuing authority (e.g. U.S. Consumer Product Safety Commission), a success/failure code, and remaining API credits.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "baby cribs"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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",
     "required": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Product name, brand, or category to check for recalls"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Hazard": "Risk of injury or death from being pulled under the rear of the treadmill",
  "Credits": "0",
  "Product": "Peloton Tread+",
  "Authority": "U.S. Consumer Product Safety Commission",
  "RecallDate": "2021-05-05"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-product-recall-information-api-966f8aa2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
