# US Federal Recalls by Firm/Company Name

> US Federal Recalls by Firm/Company Name is a paid API for AI agents from recalls.recordsforagents.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Look up US federal product recalls (CPSC, FDA, USDA FSIS, NHTSA) filtered by issuing firm or company name

## Facts

- Endpoint: GET https://recalls.recordsforagents.com/recalls/by-firm
- 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/us-federal-recalls-by-firm-company-name-ae1fd024
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pqFLY6mIqGkmHTYMN0LdI

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 us-federal-recalls-by-firm-company-name-ae1fd024
```

Example prompt: Can you pull up all US federal recalls associated with the company 'Blue Bell Creameries' from 2020 to 2025 — I want to see anything from CPSC, FDA, USDA, or NHTSA?

## When to prefer this

Use this endpoint when you know or suspect the issuing company name and want to retrieve all federal recalls attributed to that firm across multiple agencies (CPSC, FDA, USDA FSIS, NHTSA). Prefer this over the keyword search endpoint when firm-centric filtering is the primary need, or over the recall-number endpoint when you don't have a specific recall ID.

## Known failure modes

- No recalls found for the given firm name — returns empty result set
- Firm name misspelled or does not match agency records — returns no results
- Date range filters out all matching records
- Rate limiting or payment failure (x402) blocks the request
- Partial name match may miss records if exact firm name differs from agency filing

## How this service works

Look up US federal recalls by firm/company name (CPSC, FDA, USDA FSIS meat/poultry, and NHTSA).

## Output

A list of recall records matching the firm name, each containing the recall number, agency (CPSC/FDA/USDA FSIS/NHTSA), product description, recall reason, recall date, and firm name, paginated via limit/offset.

## 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": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string"
      },
      "limit": {
       "type": "integer"
      },
      "offset": {
       "type": "integer"
      },
      "date_to": {
       "type": "string"
      },
      "date_from": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/us-federal-recalls-by-firm-company-name-ae1fd024/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from recalls.recordsforagents.com](https://www.zero.xyz/host/recalls.recordsforagents.com/llms.txt)
