# Agent Bounty Radar – Base USDC Health Check

> Agent Bounty Radar – Base USDC Health Check is a paid API for AI agents from agent-bounty-radar-29837.alissonayres-trb.chatgpt.site, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns real-time health status of the Base network and native USDC contract, including latest block, gas price, contract deployment status, and seller payout rail readiness.

## Facts

- Endpoint: GET https://agent-bounty-radar-29837.alissonayres-trb.chatgpt.site/x402/base-usdc-health
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-bounty-radar-base-usdc-health-check-0c6c7865
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j-RZIkVHQ_siexQReO1G-

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 agent-bounty-radar-base-usdc-health-check-0c6c7865
```

Example prompt: Can you check if the Base network and USDC contract are healthy right now — I need to know the latest block, current gas price, and whether the seller payout rail is ready before I send a payment?

## When to prefer this

Choose this endpoint when you need a quick, live snapshot of Base network health and USDC contract readiness before executing or routing x402 micropayments on Base. It is especially useful as a pre-flight check in agentic payment workflows to confirm infrastructure is operational before committing funds.

## Known failure modes

- HTTP 402 returned if the $0.01 USDC x402 payment header is missing or invalid — agent must retry with valid payment
- Network timeout if Base RPC is temporarily unavailable
- Stale block data if the underlying Base node is syncing
- Zero values for gas_price_wei/gwei if the node cannot fetch current fee data

## How this service works

Two fixed-price x402 v2 APIs on Base. Unpaid requests return HTTP 402 with PAYMENT-REQUIRED; paid retries return JSON and PAYMENT-RESPONSE.

## Output

A JSON object containing: Base network metadata (name, chain_id 8453, latest_block, gas_price_wei, gas_price_gwei), native USDC contract details (address, decimals, contract_deployed boolean), and seller rail info (status string, payout_address, current_usdc_balance in USDC).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "network": {
   "name": "Base",
   "chain_id": 8453,
   "latest_block": 0,
   "gas_price_wei": "0",
   "gas_price_gwei": "0"
  },
  "native_usdc": {
   "contract": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
   "decimals": 6,
   "contract_deployed": true
  },
  "seller_rail": {
   "status": "ready",
   "payout_address": "0xD9a3d3528C92Ef9930c8cCF834a44eE4C01F2180",
   "current_usdc_balance": "0"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-bounty-radar-base-usdc-health-check-0c6c7865/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-bounty-radar-29837.alissonayres-trb.chatgpt.site](https://www.zero.xyz/host/agent-bounty-radar-29837.alissonayres-trb.chatgpt.site/llms.txt)
