# Oblique Markets Base Gas Price Feed

> Oblique Markets Base Gas Price Feed is a paid API for AI agents from api.oblique.markets, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns live Base mainnet gas price and latest-block baseFeePerGas (EIP-1559) in both wei and gwei, sourced from redundant public RPCs

## Facts

- Endpoint: GET https://api.oblique.markets/api/v1/paid/base-gas-price
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oblique-markets-base-gas-price-feed-daca9572
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cd7Q964ujxzOaItTg2EZ7

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 oblique-markets-base-gas-price-feed-daca9572
```

Example prompt: What's the current gas price on Base mainnet right now — give me both the wei and gwei values including the EIP-1559 baseFeePerGas from the latest block?

## When to prefer this

Choose this endpoint when you need real-time Base mainnet gas prices with EIP-1559 baseFeePerGas specifically — ideal for agents that need to decide whether to submit a transaction, estimate fees, or monitor gas trends on Base L2. Prefer over generic Ethereum gas oracles when Base-specific data is required.

## Known failure modes

- RPC node unavailability causing stale or missing data
- Network congestion leading to delayed block data
- Rate limiting if called too frequently
- HTTP 402 payment required if x402 payment header not included or USDC balance insufficient

## How this service works

Use when an agent needs base gas price. Returns Current Base gas price: fetch EIP-1559 latest-block base fee and gas price in wei and gwei from redundant public RPCs, with block freshness metadata for transaction planning. $0.002.

## Output

Returns the current Base mainnet gas price and the latest block's baseFeePerGas in two units: wei (raw integer) and gwei (human-readable decimal), sourced from redundant public RPC nodes for reliability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-08-10T12:00:00.000Z",
  "block_number": 33712840,
  "gas_price_wei": "5842310",
  "gas_price_gwei": 0.00584231,
  "base_fee_per_gas_wei": "4127554",
  "base_fee_per_gas_gwei": 0.004127554
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-base-gas-price-feed-daca9572/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.oblique.markets](https://www.zero.xyz/host/api.oblique.markets/llms.txt)
