# ForgeMesh Car MPG Lookup

> ForgeMesh Car MPG Lookup is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns official EPA fuel economy data (city, highway, combined MPG, fuel type, CO2/mile) for any US-market vehicle since 1984, by year/make/model or VIN, with all engine/transmission variants.

## Facts

- Endpoint: POST https://x402.forgemesh.io/car-mpg-lookup
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-car-mpg-lookup-acdb335e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ls5xJ_r7GmxEmENFzrrzG

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 forgemesh-car-mpg-lookup-acdb335e -d '<json body>'
```

Example prompt: What's the official EPA city, highway, and combined MPG for a 2019 Honda Accord — show me all the engine and transmission variants available.

## When to prefer this

Use this endpoint when you need official EPA fuel economy figures (city/highway/combined MPG), fuel type, or CO2 emissions data for any US-market vehicle from 1984 onward. It supports both VIN-based lookup (for exact vehicle identification) and year/make/model queries, and returns all engine/transmission variants with IDs for precise filtering. Prefer this over generic car data APIs when EPA test-cycle accuracy and CO2 data are required.

## Known failure modes

- Vehicle not found for given make/model/year combination — no results returned
- Invalid or malformed VIN — decoding fails or returns error
- Model year before 1984 — outside supported range
- Ambiguous model name matching multiple makes — requires more specific input
- Invalid vehicle_id provided — returns error or empty result

## How this service works

MPG lookup for any US-market car since 1984: official test-cycle city, highway, and combined miles per gallon plus fuel type and CO2 per mile, by year/make/model or VIN. Multiple engine/transmission variants are returned with ids so you can query the exact one. Clean structured JSON.

## Output

A structured JSON response listing all engine/transmission variants for the queried vehicle, each with a unique vehicle_id and official EPA test-cycle city MPG, highway MPG, combined MPG, fuel type, and CO2 emissions per mile. Multiple variants allow precise selection of the exact configuration.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "vin": {
   "type": "string",
   "description": "VIN — decoded automatically (alternative to make/model/model_year)"
  },
  "make": {
   "type": "string",
   "description": "e.g. Honda"
  },
  "model": {
   "type": "string",
   "description": "e.g. Accord"
  },
  "model_year": {
   "type": "string",
   "description": "4-digit year, 1984+"
  },
  "vehicle_id": {
   "type": "integer",
   "description": "exact variant id from other_variants"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-car-mpg-lookup-acdb335e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
