# SafePulse Vehicle Safety Lookup

> SafePulse Vehicle Safety Lookup is a paid API for AI agents from safepulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns NHTSA recalls, complaints, and crash ratings for a given vehicle year, make, and model

## Facts

- Endpoint: GET https://safepulse.theaslangroupllc.com/api/safe/vehicle
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/safepulse-vehicle-safety-lookup-73340754
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V37GFBN7LuVWxO93_VRWG

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-lookup-73340754
```

Example prompt: Can you check if there are any NHTSA recalls, complaints, or crash rating issues for a 2019 Honda CR-V? I'm thinking of buying one and want to know its full safety history.

## When to prefer this

Use this endpoint when a user wants to check vehicle-specific safety data including NHTSA recalls, consumer complaints, and crash test ratings for a particular year/make/model combination — especially useful in car-buying, fleet management, or insurance contexts where vehicle safety history matters.

## Known failure modes

- Unknown or unrecognized vehicle year/make/model combination returns empty results or 404
- NHTSA data unavailable for older or obscure vehicles
- Payment not processed (x402 protocol failure) results in 402 response
- Missing required parameters (year, make, or model) returns 400 bad request
- Rate limiting or upstream NHTSA API outage causes 503 or timeout

## How this service works

Vehicle safety lookup for car-buyer and safety agents. Returns NHTSA recalls, complaints, and crash ratings for any year/make/model.

## Output

A structured response containing NHTSA recall notices, consumer complaint summaries, and crash test ratings for the specified year, make, and model of vehicle

## 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-lookup-73340754/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from safepulse.theaslangroupllc.com](https://www.zero.xyz/host/safepulse.theaslangroupllc.com/llms.txt)
