# SafePulse Product Safety Score API

> SafePulse Product Safety Score API is a paid API for AI agents from safepulse-xi.vercel.app, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-13).

Returns a composite safety score for a product by aggregating recall and alert data from CPSC, FDA, USDA FSIS, NHTSA, EU RAPEX, and other global safety databases

## Facts

- Endpoint: GET https://safepulse-xi.vercel.app/api/safe/score
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/safepulse-product-safety-score-api-5d9b4e24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d0Lb3SbUPGvllzSlqb1zA

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 safepulse-product-safety-score-api-5d9b4e24
```

Example prompt: Can you check the safety score for the Graco Extend2Fit convertible car seat — I want to know if it has any NHTSA or CPSC recalls or flags before I buy it for my toddler?

## When to prefer this

Use this endpoint when you need a single consolidated safety score and recall status for a consumer product across multiple global regulatory agencies (CPSC, FDA, NHTSA, USDA FSIS, EU RAPEX). Prefer this over querying individual agency APIs when you need a quick composite view rather than raw regulatory data. Ideal for e-commerce safety checks, parenting apps, or any agent helping users make safer purchasing decisions.

## Known failure modes

- Product not found in any regulatory database — returns empty or null score
- Ambiguous product name matches multiple items — may return multiple results or require more specific input
- Payment not processed — 402 response requiring x402 micropayment
- Regulatory database temporarily unavailable — partial results returned
- Invalid or missing query parameters — 400 bad request

## How this service works

SafePulse — product safety intelligence: CPSC, FDA, USDA FSIS, NHTSA recalls; EU RAPEX; home safety scores; child/vehicle safety ratings; food safety alerts worldwide.

## Output

A JSON object containing a composite safety score for the queried product, along with any active or historical recall notices from agencies such as CPSC, FDA, USDA FSIS, NHTSA, and EU RAPEX, plus sub-scores for child safety, vehicle safety, food safety, and home safety where applicable.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "brand"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "brand": {
   "type": "string",
   "description": "brand"
  },
  "product_type": {
   "type": "string",
   "description": "product_type"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/safepulse-product-safety-score-api-5d9b4e24/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from safepulse-xi.vercel.app](https://www.zero.xyz/host/safepulse-xi.vercel.app/llms.txt)
