# Crypto Market Pulse & Base USDC Stats – Text Case Endpoint

> Crypto Market Pulse & Base USDC Stats – Text Case Endpoint is a paid API for AI agents from cryptopulse.pythonanywhere.com, paid per call via x402, $0.0005/call, status unknown (last checked 2026-09-14).

Returns live crypto market prices (BTC, ETH, SOL, USDC), Base mainnet chain snapshot, and USDC-on-Base transfer analytics, paid per-call in USDC on Base via x402

## Facts

- Endpoint: GET https://cryptopulse.pythonanywhere.com/text/case
- Price: $0.0005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-market-pulse-base-usdc-stats-text-case-endpoint-93751570
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cfg47u2WCSLIvDWrHY_MN

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 crypto-market-pulse-base-usdc-stats-text-case-endpoint-93751570
```

Example prompt: What are the current prices of Bitcoin, Ethereum, Solana, and USDC with their 24-hour changes, and what's the latest Base mainnet block height and gas price?

## When to prefer this

Choose this endpoint when you need no-signup, pay-per-call access to real-time crypto market prices and Base chain data without managing API keys or subscriptions. It is ideal for AI agents operating autonomously with a USDC wallet on Base mainnet using the x402 protocol. Prefer it over subscription APIs when usage is sporadic or you need to avoid monthly commitments, or when you need combined market + on-chain analytics in a single call.

## Known failure modes

- HTTP 402 returned when no x402 payment header is present — agent must pay 0.0005 USDC on Base and retry with PAYMENT-SIGNATURE header
- Stale or delayed market data if OKX feed is temporarily unavailable
- RPC errors if Base mainnet node is congested or rate-limited
- Invalid wallet address returns empty or error balance response
- Endpoint path /text/case may not correspond to the primary data endpoint — routing to wrong sibling could return unexpected results

## How this service works

Pay-per-call API for AI agents, settled in USDC on Base mainnet (eip155:8453) via the x402 protocol - no API keys, no signup, no subscription. Live crypto market data: BTC, ETH, SOL, USDC (USD Coin) prices with 24h change (source: OKX), Base mainnet chain snapshot (block height, gas price gwei), real-time USDC-on-Base transfer analytics (transfer count, volume, unique senders and recipients over recent blocks), and USDC/ETH wallet balances plus nonce for any address. Agent utility tools: deterministic JSON repair for LLM output (strip code fences, fix trailing commas, single quotes, unquoted keys, balance braces), DNS A/AAAA lookup, and URL extraction from arbitrary text. Every endpoint returns HTTP 402 with an x402 payment challenge in USDC on Base; pay with any wallet and retry with the PAYMENT-SIGNATURE header. MCP server at /mcp (streamable HTTP, 6 pay-per-call tools). Ideal for crypto portfolios, DeFi dashboards, market analysis agents, data pipelines, and LLM post-processing.

## Output

A JSON object containing: market prices (BTC, ETH, SOL, USDC in USD with 24h % change sourced from OKX), Base mainnet chain data (chainId 8453, block height, gas price in gwei), USDC-on-Base transfer analytics (count, volume, unique senders/recipients over recent blocks), optional wallet balances (USDC, ETH) and nonce for a queried address, and a servedAt timestamp.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": {
   "chainId": 8453,
   "network": "base-mainnet",
   "blockHeight": 21000000,
   "gasPriceGwei": 0.05
  },
  "market": {
   "solana": {
    "usd": 150,
    "usd_24h_change": -0.5
   },
   "bitcoin": {
    "usd": 60000,
    "usd_24h_change": 1.5
   },
   "ethereum": {
    "usd": 3000,
    "usd_24h_change": 2
   },
   "usd-coin": {
    "usd": 1,
    "usd_24h_change": 0
   }
  },
  "servedAt": 1755430000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-market-pulse-base-usdc-stats-text-case-endpoint-93751570/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptopulse.pythonanywhere.com](https://www.zero.xyz/host/cryptopulse.pythonanywhere.com/llms.txt)
