# X402 Hub – Coinbase Realtime Data

> X402 Hub – Coinbase Realtime Data is a paid API for AI agents from x402-hub.vercel.app, paid per call via x402, $0.140681/call, status unknown (last checked 2026-09-15).

Fetches real-time data from Coinbase via a micropayment-gated proxy endpoint on the X402 Hub platform

## Facts

- Endpoint: POST https://x402-hub.vercel.app/api/coinbase-realtime
- Price: $0.140681/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-hub-coinbase-realtime-data-58a813ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uKKdpr_KZbuSeBU7_fVk8

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 x402-hub-coinbase-realtime-data-58a813ab -d '<json body>'
```

Example prompt: Can you pull the latest real-time Coinbase data for BTC-USD right now — I need live price and trading info?

## When to prefer this

Choose this endpoint when you need real-time Coinbase market or trading data and are operating in an x402 micropayment-enabled environment on Base. It is ideal for agents that already have USDC on Base and want pay-per-query access without managing Coinbase API keys directly. Prefer this over direct Coinbase API calls when you want a keyless, wallet-native access pattern.

## Known failure modes

- Payment not accepted – x402 micropayment of ~$0.14 USDC not fulfilled, returns 402
- Invalid or malformed query parameter – upstream Coinbase API rejects the query
- Upstream Coinbase API unavailable – proxy returns error from the upstream
- Rate limiting or quota exceeded on the underlying Coinbase API
- Network timeout if real-time data feed is slow or congested

## How this service works

63 paid API endpoints protected by x402 micropayments on Base

## Output

Returns a data object containing real-time information from Coinbase, such as current prices, market rates, or trading data corresponding to the query parameter provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Query parameter for the API"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "description": "Response data from upstream API"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-hub-coinbase-realtime-data-58a813ab/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-hub.vercel.app](https://www.zero.xyz/host/x402-hub.vercel.app/llms.txt)
