# 402.com.tr Base Chain Status

> 402.com.tr Base Chain Status is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns live Base chain snapshot including latest block, base fee, priority fee, current ETH price, and estimated USD cost of a simple ETH transfer

## Facts

- Endpoint: GET https://402.com.tr/api/x402/chain-status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-base-chain-status-c15ccb65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OFqc63Qu5C_FeT6CW_xoD

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 402-com-tr-base-chain-status-c15ccb65
```

Example prompt: What are the current gas fees on Base right now — give me the base fee, priority fee in Gwei, today's ETH price, and what a simple ETH transfer would cost me in dollars?

## When to prefer this

Use this endpoint when an AI agent needs to assess real-time Base chain conditions before timing or budgeting a transaction — particularly when you need the combined view of block height, gas fees (base + priority), ETH spot price, and transfer cost estimate in a single call rather than querying multiple RPC endpoints separately.

## Known failure modes

- Upstream Base RPC or price feed unavailable — may return 5xx or stale data
- Network congestion causing delayed chain data
- Payment of $0.005 USDC not provided or invalid — returns 402 Payment Required
- Rate limiting if too many requests in a short window

## How this service works

Live Base chain snapshot: latest block, base fee + priority fee (Gwei), current ETH price, and the estimated USD cost of a simple ETH transfer. For agents timing or budgeting transactions.

## Output

Returns a JSON snapshot of the Base chain including: latest block number, current base fee in Gwei, current priority fee in Gwei, live ETH price in USD, and the estimated USD cost of a standard ETH transfer at current network conditions.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/402-com-tr-base-chain-status-c15ccb65/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
