# Suverse US Fuel Prices

> Suverse US Fuel Prices is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Returns current national-average US fuel prices for all major fuel types (regular, midgrade, premium, diesel, E85, CNG, LPG, electricity) sourced from FuelEconomy.gov (US EPA/DOE).

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-veh-fuel-prices
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-us-fuel-prices-aed5f36c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aQRs6wkRoODLRnjfaqHtl

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-us-fuel-prices-aed5f36c -d '<json body>'
```

Example prompt: What are the current US national average fuel prices for all fuel types — regular, premium, diesel, E85, and electricity — from the official EPA/DOE source?

## When to prefer this

Use this endpoint when you need official, authoritative US national-average fuel prices from a government source (EPA/DOE) without requiring any API key. Prefer this over scraping third-party price aggregators when data credibility matters, or when estimating fuel costs for budgeting, fleet management, route planning, or vehicle cost comparisons.

## Known failure modes

- Upstream FuelEconomy.gov API unavailability returns a proxy error
- Payment failure (x402) if USDC balance is insufficient
- Empty or null values if FuelEconomy.gov has not updated prices recently
- Network timeout if the upstream government endpoint is slow to respond

## How this service works

Current national-average US fuel prices from FuelEconomy.gov: regular, midgrade, premium, diesel, E85, CNG, LPG, electricity. Keyless US EPA/DOE source. For agents estimating fuel costs.

## Output

Returns current national-average US fuel prices per unit for each fuel type: regular gasoline, midgrade gasoline, premium gasoline, diesel, E85, CNG (compressed natural gas), LPG (propane), and electricity. Data is sourced from FuelEconomy.gov, the official US EPA/DOE database, requiring no API key.

## 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-us-fuel-prices-aed5f36c/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)
