# EPA FuelEconomy.gov Vehicle Model Years Lookup

> EPA FuelEconomy.gov Vehicle Model Years Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns all available model years in the US EPA/DOE FuelEconomy.gov vehicle database for use in MPG and emissions lookups.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-veh-mpg-years
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/epa-fueleconomy-gov-vehicle-model-years-lookup-0d36b692
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CcIbraoKJv54txThtdBW2

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 epa-fueleconomy-gov-vehicle-model-years-lookup-0d36b692 -d '<json body>'
```

Example prompt: What model years are available in the EPA FuelEconomy.gov database? I want to build a vehicle MPG lookup and need to know which years I can query.

## When to prefer this

Choose this endpoint when you need a keyless, micropayment-based proxy to the EPA FuelEconomy.gov years list without managing your own API credentials or rate limits. Ideal for agents building vehicle fuel economy or emissions tools that need a dynamic, up-to-date list of valid model years as a first step before querying MPG or emissions data.

## Known failure modes

- Upstream FuelEconomy.gov API unavailable — proxy may return 5xx or timeout
- Malformed request body may return 400 validation error
- Payment failure (x402) if USDC micropayment is not processed correctly
- Empty or unexpected response if FuelEconomy.gov data is temporarily inconsistent

## How this service works

All model years available in the US EPA/DOE FuelEconomy.gov vehicle database. Returns selectable year values. Keyless FuelEconomy.gov. For agents building vehicle MPG and emissions lookups.

## Output

A list of selectable model year values (e.g. integers like 1984, 1985, … 2025) drawn from the EPA/DOE FuelEconomy.gov vehicle database, suitable for use as dropdown options or validation references in vehicle MPG and emissions lookup tools.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/epa-fueleconomy-gov-vehicle-model-years-lookup-0d36b692/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
