# USDA FSIS Recall & Public Health Alert Search

> USDA FSIS Recall & Public Health Alert Search is a paid API for AI agents from api.govparse.io, paid per call via x402, $1.25/call, status unknown (last checked 2026-09-14).

Search USDA FSIS meat, poultry, and egg recall records and public health alerts by firm, classification, reason, state, date, and outbreak linkage

## Facts

- Endpoint: GET https://api.govparse.io/v1/fsis/recalls/search
- Price: $1.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/usda-fsis-recall-public-health-alert-search-cb899425
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GJUSLQGBFH4Jibs-bOO7P

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 usda-fsis-recall-public-health-alert-search-cb899425
```

Example prompt: Can you pull up all active FSIS Class I meat or poultry recalls since January 1 2024 that are linked to an outbreak, and show me the recalling firm, product, and reason for each one?

## When to prefer this

Use this endpoint when you need structured, searchable access to USDA FSIS recall records for meat, poultry, or egg products — particularly when filtering by firm name, classification severity, reason, state distribution, or outbreak linkage. Prefer this over general web search when you need machine-readable recall data with entity resolution, or when building automated food-safety monitoring, compliance workflows, or B2B lead generation targeting firms with active recalls.

## Known failure modes

- No results returned when company name spelling doesn't match FSIS records — try partial name fragments
- State filter may return no results if a recall has no distribution state listed
- Date filter (since) returns empty if no recalls fall in the range
- Invalid classification or recall_type values silently return empty results
- Rate limiting or payment failure returns a 402 error requiring valid x402 payment
- Large result sets may need pagination via offset parameter

## How this service works

Which food companies have an FSIS meat/poultry/egg recall? Search USDA FSIS recall and public-health-alert records by recalling firm, classification (Class I/II/III or Public Health Alert), reason (allergens, contamination, misbranding), state, active status, outbreak link, or recall date (since). Returns the recalling firm (entity-resolved where possible), classification, reason, product, and dates — a remediation, sanitation, and displacement trigger for food-safety sellers.

## Output

Returns a paginated list of FSIS recall and public health alert records, each including the recalling firm name (entity-resolved where possible), recall classification (Class I/II/III or Public Health Alert), reason for recall, affected products, distribution states, recall and last-modified dates, active status, and outbreak linkage flag.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "sort": {
     "type": "string",
     "examples": [
      "recall_date:desc"
     ],
     "description": "recall_date | last_modified_date :asc|:desc. Default recall_date:desc."
    },
    "limit": {
     "type": "integer",
     "examples": [
      25
     ],
     "description": "Max rows (default 25, cap 100)."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-01-01"
     ],
     "description": "Recall on/after this date (YYYY-MM-DD)."
    },
    "state": {
     "type": "string",
     "examples": [
      "CA"
     ],
     "description": "Distribution state code(s), CSV."
    },
    "active": {
     "type": "string",
     "examples": [
      "true"
     ],
     "description": "true = currently-active recall notices only."
    },
    "offset": {
     "type": "integer",
     "examples": [
      0
     ],
     "description": "Rows to skip."
    },
    "reason": {
     "type": "string",
     "examples": [
      "Unreported Allergens"
     ],
     "description": "Reason fragment (Unreported Allergens, Product Contamination, Misbranding, ...)."
    },
    "company": {
     "type": "string",
     "examples": [
      "Reser's"
     ],
     "description": "Recalling firm — suffix/punctuation-insensitive."
    },
    "outbreak": {
     "type": "string",
     "examples": [
      "true"
     ],
     "description": "true = recalls related to an outbreak."
    },
    "entity_id": {
     "type": "string",
     "examples": [
      "b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
     ],
     "description": "Resolved employer entity UUID."
    },
    "recall_type": {
     "type": "string",
     "examples": [
      "Active Recall"
     ],
     "description": "Active Recall | Closed Recall | Public Health Alert (CSV)."
    },
    "classification": {
     "type": "string",
     "examples": [
      "Class I"
     ],
     "description": "Class I | Class II | Class III | Public Health Alert (CSV)."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/usda-fsis-recall-public-health-alert-search-cb899425/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.govparse.io](https://www.zero.xyz/host/api.govparse.io/llms.txt)
