# ClearCheck Food Recall Lookup

> ClearCheck Food Recall Lookup is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Looks up FDA food recalls by company name or product, returning recall class, reason, distribution scope, and open/closed status.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/foodrecall
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-food-recall-lookup-23d389ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BYL_qixxBU-__2yVG-LTm

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 clearcheck-food-recall-lookup-23d389ae
```

Example prompt: Can you check if Sunfresh Foods has any open FDA food recalls, and tell me what class they are and why they were recalled?

## When to prefer this

Use this endpoint when you need to quickly check FDA food recall history for a specific company or product by name, get structured recall metadata including class, reason, and open/closed status, or filter recalls by US state. Prefer this over general web search when you need structured, queryable recall data with aggregated counts and a clear verdict rather than raw news articles.

## Known failure modes

- No matching recalls found for the given firm or product name — returns empty recalls array
- Misspelled or partial company name may return no results or unrelated records
- FDA data may lag real-time events; very recent recalls may not appear
- Service unavailable if the render.com host is cold-starting or down
- Invalid state code may return no results or an error

## How this service works

Food recall check by company or product: FDA class, reason, distribution, and whether the recall is still open.

## Output

Returns a list of FDA recall records matching the query, each including the recalling firm, product description, classification (Class I/II/III), reason for recall, distribution scope, initiation and termination dates, current status (ongoing or terminated), and whether the recall was voluntary. Also includes aggregate counts by class, a list of unique recall reasons, a plain-language verdict, and a disclaimer. The response is sourced from FDA enforcement data with a timestamp.

## 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": [],
     "properties": {
      "firm": {
       "type": "string",
       "description": "Recalling company name — the precise search"
      },
      "limit": {
       "type": "integer",
       "description": "Max recalls to return, default 10"
      },
      "state": {
       "type": "string",
       "description": "Two-letter state code of the recalling firm"
      },
      "product": {
       "type": "string",
       "description": "Product or brand text to match in the recall description"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "object",
       "properties": {
        "firm": {
         "type": "string"
        },
        "product": {
         "type": "null"
        }
       }
      },
      "counts": {
       "type": "object",
       "properties": {
        "classI": {
         "type": "integer"
        },
        "classII": {
         "type": "integer"
        },
        "ongoing": {
         "type": "integer"
        },
        "classIII": {
         "type": "integer"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "recalls": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "reason": {
          "type": "string"
         },
         "status": {
          "type": "string"
         },
         "product": {
          "type": "string"
         },
         "quantity": {
          "type": "string"
         },
         "voluntary": {
          "type": "string"
         },
         "initiatedOn": {
          "type": "string"
         },
         "classifiedOn": {
          "type": "string"
         },
         "distribution": {
          "type": "string"
         },
         "firmLocation": {
    
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-food-recall-lookup-23d389ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
