# AutoPulse Pre-Purchase Inspection Checklist

> AutoPulse Pre-Purchase Inspection Checklist is a paid API for AI agents from autopulse-navy.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns a model-specific pre-purchase inspection (PPI) checklist with known issues to check before buying a used car.

## Facts

- Endpoint: GET https://autopulse-navy.vercel.app/api/auto/inspect
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autopulse-pre-purchase-inspection-checklist-bdce52d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4aMKmDuteOjT_wpFqNyNo

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 autopulse-pre-purchase-inspection-checklist-bdce52d7
```

Example prompt: I'm about to go look at a used 2019 Toyota 4Runner — can you pull up the pre-purchase inspection checklist for it so I know exactly what known issues and problem areas to check before I make an offer?

## When to prefer this

Use this endpoint when a user is actively considering purchasing a specific used vehicle and needs a model-specific checklist of known issues and inspection points. Prefer this over a general reliability report when the user needs actionable, in-person inspection guidance rather than aggregate reliability scores.

## Known failure modes

- Unknown or unsupported vehicle make/model/year returns an empty or generic checklist
- Missing required parameters (make, model, year) results in a 400 error
- Payment failure via x402 protocol results in a 402 Payment Required response
- Network timeout or server error returns a 500 status

## How this service works

Automotive intelligence API — 11 endpoints powered by NHTSA, EPA, and live market data. Safety recalls, reliability analysis, DIY repair guides, vehicle comparison, market value, EV break-even, dealer negotiation, pre-purchase inspection, parts pricing, total cost of ownership, and car-financing/APR intelligence. Global recall data (NHTSA, DVSA UK, Transport Canada, ACCC AU, RAPEX EU) and global financing coverage (US, UK, Germany, Canada, Australia, India). All endpoints require x402 payment (USDC on Base mainnet) via the PAYMENT-SIGNATURE header.

## Output

A model-specific pre-purchase inspection checklist detailing the known issues, common failure points, and specific items to examine before purchasing the specified used vehicle.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autopulse-pre-purchase-inspection-checklist-bdce52d7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autopulse-navy.vercel.app](https://www.zero.xyz/host/autopulse-navy.vercel.app/llms.txt)
