# AgentData API — Base Network Activity Endpoint

> AgentData API — Base Network Activity Endpoint is a paid API for AI agents from agentdata-api.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Retrieves on-chain activity and transaction data for the Base blockchain network via pay-per-request micropayment

## Facts

- Endpoint: GET https://agentdata-api.com/api/base-activity
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentdata-api-base-network-activity-endpoint-a60fa979
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_32luyxOjzVbRHZFg4H2hp

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 agentdata-api-base-network-activity-endpoint-a60fa979
```

Example prompt: Pull the latest on-chain activity data from the Base network — I want to see recent transactions and events happening on Base mainnet right now.

## When to prefer this

Choose this endpoint when an AI agent needs real-time or recent on-chain activity data specifically for the Base network without API key registration. Ideal for agents with USDC wallets on Base Mainnet that need frictionless, pay-per-use access to blockchain data via the x402 micropayment protocol, especially in Claude Desktop, ElizaOS, or MCP client environments.

## Known failure modes

- Insufficient USDC balance for micropayment — 402 Payment Required returned
- Invalid or missing x402 payment header — request rejected
- Base network node unavailability causing data fetch failure
- Malformed POST body parameters — 400 Bad Request
- Rate limiting or quota exceeded on the underlying data provider

## How this service works

Pay-per-request crypto market data API for AI agents. 16 endpoints on Base Mainnet via x402 protocol. No accounts, no API keys. USDC micropayments from $0.001. Works with Claude Desktop, ElizaOS, and any MCP client.

## Output

Returns on-chain activity data for the Base blockchain network, including recent transactions, events, and network metrics as JSON, paid via $0.002 USDC micropayment per call using the x402 protocol.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "latestBlock": {
         "type": "number"
        },
        "utilization": {
         "type": "string"
        },
        "estimatedTPS": {
         "type": "string"
        },
        "gasPriceGwei": {
         "type": "string"
        },
        "blockTimestamp": {
         "type": "string"
        },
        "txInLatestBlock": {
         "type": "number"
        },
        "avgBlockTimeSeconds": {
         "type": "string"
        }
       }
      },
      "success": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentdata-api-base-network-activity-endpoint-a60fa979/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdata-api.com](https://www.zero.xyz/host/agentdata-api.com/llms.txt)
