# ParentPulse Baby & Child Product Recall Checker

> ParentPulse Baby & Child Product Recall Checker is a paid API for AI agents from parentpulse.theaslangroupllc.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Checks whether a specific baby or child product (car seat, crib, stroller, high chair, toy) is subject to a safety recall, across multiple regulatory databases including CPSC/NHTSA (US), Safety Gate (EU), OPSS (UK), Health Canada, and ACCC (Australia).

## Facts

- Endpoint: GET https://parentpulse.theaslangroupllc.com/api/parent/safety
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/parentpulse-baby-child-product-recall-checker-cc0b5c70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HOexpyBtcXQjS8A_p6_GZ

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 parentpulse-baby-child-product-recall-checker-cc0b5c70
```

Example prompt: Can you check if the Graco SnugRide 35 car seat has been recalled anywhere — specifically in the US (CPSC/NHTSA) and Canada?

## When to prefer this

Use this endpoint when a parent or family agent needs to verify whether a specific baby or child product is subject to a safety recall across one or more major regulatory jurisdictions (US, EU, UK, Canada, Australia). Prefer this over generic web search when you need structured, authoritative recall data from official regulatory bodies like CPSC, NHTSA, Safety Gate, OPSS, Health Canada, or ACCC. Ideal for parenting assistants, e-commerce safety checks, and family safety automation.

## Known failure modes

- Product or brand not found in any recall database — returns no recall records found
- Ambiguous product name resulting in multiple possible matches — may return partial or uncertain results
- Country/region not supported — if an unsupported regulatory jurisdiction is queried
- Regulatory database temporarily unavailable — upstream data source outage may cause incomplete results
- Missing required parameters (product name or brand) — returns 400-level error

## How this service works

Baby and child product recall check for parenting and family agents worldwide. Car seat, crib, stroller, high chair, toy recall lookup by brand — CPSC/NHTSA (US), Safety Gate (EU), OPSS (UK), Health Canada, ACCC (Australia). Is this product recalled? How do I verify a recall by country?

## Output

Returns the recall status of the queried baby or child product, including whether it has been recalled, the regulatory body that issued the recall (e.g. CPSC, NHTSA, Safety Gate, OPSS, Health Canada, ACCC), recall details such as hazard description and remedy, and country-specific recall notice information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lang": {
   "type": "string",
   "description": "Response language"
  },
  "brand": {
   "type": "string",
   "description": "Brand or manufacturer name"
  },
  "country": {
   "type": "string",
   "description": "Country or region, to identify the correct regulator — e.g. US, UK, EU, Canada, Australia (default: US + EU checked)"
  },
  "product_type": {
   "type": "string",
   "description": "Product category — e.g. car-seat, crib, stroller, high-chair, toy"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "brand": "Graco",
  "country": "US",
  "product_type": "car-seat",
  "how_to_verify": {
   "relevant_regulators": [
    {
     "name": "CPSC",
     "applies_to": "US",
     "search_term": "CPSC recalls Graco car seat"
    }
   ]
  },
  "recall_status": {
   "confidence": "medium",
   "recall_details": [],
   "active_recalls_found": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/parentpulse-baby-child-product-recall-checker-cc0b5c70/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from parentpulse.theaslangroupllc.com](https://www.zero.xyz/host/parentpulse.theaslangroupllc.com/llms.txt)
