# GoCreative FDA Recall Lookup

> GoCreative FDA Recall Lookup is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Looks up recent FDA drug and product recalls by company name or keyword, returning recalling firm, product details, reason, classification, and status from official openFDA enforcement data.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/leads/fda-recalls/:var1
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-fda-recall-lookup-246041fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XWoA5_1n1lH6Sik66Lq6O

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 gocreative-fda-recall-lookup-246041fa
```

Example prompt: Can you look up any FDA recalls associated with 'Johnson & Johnson' — I need the product name, recall reason, classification, and current status from official FDA enforcement data.

## When to prefer this

Use this endpoint when you need structured, authoritative FDA recall data for compliance monitoring, pharma supply-chain due diligence, or consumer safety checks. Prefer it over general web search for FDA recalls because it sources directly from openFDA enforcement data and returns structured fields (classification, status, reason) rather than unstructured text. Best for agents needing machine-readable recall records without building their own openFDA integration.

## Known failure modes

- No results found for the given keyword or company name — openFDA may not have matching enforcement records
- Invalid or empty input query returns an error
- Rate limiting or payment failure (x402) if USDC payment not processed
- openFDA upstream unavailability causes timeout or empty response
- Highly generic keywords return too many or irrelevant results

## How this service works

FDA recall lookup — up to 15 recent drug/product recalls by company or keyword: recalling firm, product, reason, classification and status, from official openFDA enforcement data. The keyless recall-monitoring source for compliance, supply-chain, pharma and consumer-safety agents. Try before you pay: GET /v1/free/fda-recalls/{keyword} returns the match count + one real sample recall free (25/day). $0.05 for the full list.

## Output

Returns a list of FDA enforcement records matching the company name or keyword, including: recalling firm name, product description, reason for recall, hazard classification (Class I/II/III), and recall status — sourced from openFDA enforcement data.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-fda-recall-lookup-246041fa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
