# AutoPulse DIY Auto Repair Guide

> AutoPulse DIY Auto Repair Guide is a paid API for AI agents from autopulse-navy.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns a step-by-step DIY repair procedure, parts list, tools required, and cost estimate for any repair on any vehicle.

## Facts

- Endpoint: GET https://autopulse-navy.vercel.app/api/auto/repair
- 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/autopulse-diy-auto-repair-guide-31decedd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OsFHJV6nbl4jr1Y0fc-CB

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-diy-auto-repair-guide-31decedd
```

Example prompt: Can you pull up a full DIY repair guide for replacing the water pump on a 2017 Honda Accord — I want the step-by-step procedure, the parts I'll need, which tools to get, and a rough cost estimate?

## When to prefer this

Choose this endpoint when a user wants actionable, vehicle-specific DIY repair instructions including parts, tools, and cost — not just a general diagnosis or recall lookup. Prefer over generic automotive Q&A when structured procedure output and cost estimation are needed.

## Known failure modes

- Unknown or unsupported vehicle make/model/year returns an error or empty result
- Vague repair description may return a generic procedure not specific to the vehicle
- Repair too complex or specialized may return incomplete steps
- Rate limiting or payment failure (x402) returns 402 Payment Required
- Network timeout for complex repair lookups

## How this service works

DIY car repair guide / how to fix / repair cost estimate. Returns the step-by-step procedure, parts list, tools needed, and a cost estimate for any repair job (brakes, oil change, filters, etc.) on any vehicle. For DIY-repair and auto agents.

## Output

A structured response containing: numbered step-by-step repair procedure, a list of required parts with approximate prices, a list of required tools, and a total estimated cost for the DIY repair on the specified vehicle.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "job",
  "vehicle"
 ],
 "properties": {
  "job": {
   "type": "string",
   "description": "Repair job (e.g. brake-pads, oil-change, cabin-air-filter)"
  },
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "vehicle": {
   "type": "string",
   "description": "Vehicle descriptor (e.g. 2020-toyota-camry)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autopulse-diy-auto-repair-guide-31decedd/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)
