# Suverse Vehicle MPG Makes Lookup

> Suverse Vehicle MPG Makes 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-14).

Returns all available vehicle makes for a given model year from the US EPA/DOE FuelEconomy.gov database, without requiring an API key.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-veh-mpg-makes
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-vehicle-mpg-makes-lookup-6a89c5dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QLEPqnMYrlvZYLLvk5ry5

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 suverse-vehicle-mpg-makes-lookup-6a89c5dc -d '<json body>'
```

Example prompt: What car makes does the EPA have fuel economy data for in the 2022 model year?

## When to prefer this

Choose this endpoint when you need a keyless, pay-per-call way to access the FuelEconomy.gov vehicle makes list without setting up an EPA API account. Ideal for agents building stepwise vehicle MPG or emissions lookups where makes must be enumerated before models and trim levels can be queried.

## Known failure modes

- Invalid or out-of-range model year returns empty or error response
- Upstream FuelEconomy.gov API unavailability causes degraded or failed response
- Missing required body fields returns a validation error
- Very recent model years may have incomplete data if EPA hasn't published yet

## How this service works

All vehicle makes for a given model year from US EPA/DOE FuelEconomy.gov. Returns selectable make values. Keyless FuelEconomy.gov. For agents drilling into vehicle MPG and emissions data.

## Output

A list of vehicle make names (e.g. Toyota, Ford, BMW) that have fuel economy records in the EPA/DOE FuelEconomy.gov database for the specified model year, formatted as selectable values suitable for driving further MPG or emissions lookups.

## 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/suverse-vehicle-mpg-makes-lookup-6a89c5dc/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)
