# SafePulse Vehicle Safety Intelligence API

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

Retrieves NHTSA vehicle safety recalls, ratings, and safety intelligence for specific vehicles

## Facts

- Endpoint: GET https://safepulse-xi.vercel.app/api/safe/vehicle
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/safepulse-vehicle-safety-intelligence-api-d0d3e330
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J5tQHnFffEWXUf7-2gvjt

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-vehicle-safety-intelligence-api-d0d3e330
```

Example prompt: Can you check if there are any active NHTSA recalls or safety issues for a 2021 Ford F-150, and pull the vehicle safety ratings including child seat ratings?

## When to prefer this

Use this endpoint when you need structured, consolidated vehicle safety intelligence including NHTSA recalls and safety ratings for a specific vehicle. Prefer this over raw NHTSA API access when you want a unified safety intelligence response without managing multiple government API integrations.

## Known failure modes

- Vehicle make/model/year not found — returns empty results or 404
- Invalid VIN format — returns validation error
- NHTSA upstream API unavailable — returns service error
- No recalls on file for requested vehicle — returns empty recall list
- Rate limiting or payment failure — returns 402 or 429 error

## 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

Returns vehicle safety data including active NHTSA recall notices, vehicle safety scores, child safety ratings, and any relevant safety alerts for the queried vehicle make, model, and year.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "make",
  "year",
  "model"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "make": {
   "type": "string",
   "description": "make"
  },
  "year": {
   "type": "string",
   "description": "year"
  },
  "model": {
   "type": "string",
   "description": "model"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/safepulse-vehicle-safety-intelligence-api-d0d3e330/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)
