# recalls.recordsforagents.com – Fetch Recall by Native Recall Number

> recalls.recordsforagents.com – Fetch Recall by Native Recall Number 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).

Fetch structured recall details for a specific US federal recall using its native recall number (CPSC, FDA, NHTSA, or FSIS).

## Facts

- Endpoint: GET https://recalls.recordsforagents.com/recalls/:recall_number
- 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/recalls-recordsforagents-com-fetch-recall-by-native-recall-number-8f6611fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zPMjQXsMiPe8pnzbNuU-Y

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 recalls-recordsforagents-com-fetch-recall-by-native-recall-number-8f6611fd
```

Example prompt: Can you pull up the full recall details for NHTSA campaign number 26V329000? Also grab FDA recall F-1234-2026 while you're at it.

## When to prefer this

Use this endpoint when you already have a specific native recall number (CPSC recall number, FDA enforcement number like F-XXXX-YYYY, or NHTSA campaign number) and need the full structured record for that exact recall. Prefer this over the search endpoint when the recall ID is known; use the search endpoint when you need to find recalls by keyword, company name, or UPC.

## Known failure modes

- Recall number not found or invalid — returns 404 or empty result
- Wrong source agency specified for the recall number format — try omitting the source filter
- Recall number format not recognized (e.g. wrong agency prefix) — verify the format matches CPSC/FDA/NHTSA/FSIS conventions
- Rate limiting or payment failure if x402 payment not processed correctly

## How this service works

Fetch recall(s) by native recall number (CPSC recall number, FDA recall number e.g. F-1234-2026, NHTSA campaign number e.g. 26V329000).

## Output

Returns structured recall record(s) including recalled product name, recalling firm, hazard description, affected units/lot numbers, remedy type, recall date, and source agency — keyed to the provided native recall number.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "recall_number"
     ],
     "properties": {
      "recall_number": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "source": {
       "enum": [
        "cpsc",
        "fda",
        "nhtsa",
        "fsis"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/recalls-recordsforagents-com-fetch-recall-by-native-recall-number-8f6611fd/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)
