# srch.best Vehicle Safety Data

> srch.best Vehicle Safety Data is a paid API for AI agents from x402.srch.best, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns structured NHTSA-style vehicle safety records — recalls, complaints, ratings, and investigations — for a given make, model, and year

## Facts

- Endpoint: POST https://x402.srch.best/vehicle-safety
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/srch-best-vehicle-safety-data-224073ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h5CSm7sPSu7sIaoeSyWqt

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 srch-best-vehicle-safety-data-224073ec -d '<json body>'
```

Example prompt: Look up vehicle safety records for a 2019 Toyota Camry — pull up to 20 results including any recalls, complaints, or investigations.

## When to prefer this

Choose this endpoint when you need structured, machine-readable vehicle safety data (recalls, complaints, ratings) for a specific make/model/year combination — especially when building automotive research tools, pre-purchase due-diligence flows, or fleet safety monitoring pipelines that require paginated, repeatable queries paid per-call via x402 micropayments.

## Known failure modes

- Unknown or misspelled make/model returns empty results or 404
- Model year out of supported range (pre-1940 or post-2100) returns validation error
- Expired or invalid pagination cursor causes 400 bad request
- Insufficient USDC balance or x402 payment failure blocks the request
- Limit exceeding 50 returns a schema validation error

## How this service works

Structured vehicle-safety data for agents, paid per request with x402 v2

## Output

A structured list of vehicle safety records (up to the requested limit) for the specified make, model, and year, including recall notices, safety complaints, investigation summaries, and crash test data, along with an opaque cursor for paginating through additional results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "make": {
   "type": "string",
   "maxLength": 80,
   "minLength": 1
  },
  "limit": {
   "type": "integer",
   "default": 20,
   "maximum": 50,
   "minimum": 1
  },
  "model": {
   "type": "string",
   "maxLength": 100,
   "minLength": 1
  },
  "cursor": {
   "type": "string",
   "maxLength": 128,
   "minLength": 1,
   "description": "Opaque continuation cursor returned by the previous response."
  },
  "modelYear": {
   "type": "integer",
   "maximum": 2100,
   "minimum": 1940
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/srch-best-vehicle-safety-data-224073ec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.srch.best](https://www.zero.xyz/host/x402.srch.best/llms.txt)
