# Polyform Vehicle Deal Check

> Polyform Vehicle Deal Check is a paid API for AI agents from api.polyform.org, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns a verdict (CAUTION/PASS/FAIL) on a vehicle based on open recalls and other risk factors, helping users decide if a deal is safe.

## Facts

- Endpoint: GET https://api.polyform.org/v1/vehicle/deal-check
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polyform-vehicle-deal-check-a381e072
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oo6l-Sr8eN-raeVDGP4kc

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 polyform-vehicle-deal-check-a381e072
```

Example prompt: Can you run a deal check on this 2015 Ford I'm thinking about buying and tell me if there are any open recalls or red flags I should know about?

## When to prefer this

Choose this endpoint when you need a fast, no-account-required, pay-per-call recall and risk check on a specific vehicle before a purchase decision. It is ideal for agentic workflows where API key management is impractical and micropayments via USDC on Base (x402) are supported. Prefer this over full Carfax/VIN-report APIs when you only need a quick verdict and recall summary rather than a complete vehicle history.

## Known failure modes

- Missing or invalid vehicle parameters may return an error or empty result
- Vehicle not found in recall database returns no reasons but may still have a verdict
- Network or payment failure (x402) causes the call to not complete
- Unsupported vehicle make/year combinations may return incomplete data

## How this service works

Pay-per-call data endpoints for AI agents. USDC on Base via x402. No account, no API key — one micropayment per call.

## Output

A JSON object containing a verdict string (e.g. CAUTION, PASS), an array of human-readable reasons (e.g. '2 open recalls'), and a vehicle object with the make and year that was evaluated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "reasons": [
   "2 open recalls"
  ],
  "vehicle": {
   "make": "FORD",
   "year": "2015"
  },
  "verdict": "CAUTION"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polyform-vehicle-deal-check-a381e072/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.polyform.org](https://www.zero.xyz/host/api.polyform.org/llms.txt)
