# X Data Gateway — Wallet Intel

> X Data Gateway — Wallet Intel is a paid API for AI agents from x-data-gateway.annushka1190.workers.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Returns on-chain intelligence for a given wallet address, including token balances, transaction history, and DeFi activity on Base

## Facts

- Endpoint: POST https://x-data-gateway.annushka1190.workers.dev/v1/wallet/intel
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x-data-gateway-wallet-intel-eaa5d099
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MZJa0Kt6ZvDRKc6KSPTIt

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 x-data-gateway-wallet-intel-eaa5d099 -d '<json body>'
```

Example prompt: Pull on-chain wallet intel for 0xAbC123...def on Base — I want to see token balances, recent transactions, and any DeFi positions.

## When to prefer this

Choose this endpoint when you need comprehensive on-chain wallet profiling on Base — token holdings, transaction history, and DeFi activity — in a single call, paid per-use in USDC with no API key required. Prefer it over manual RPC calls or Etherscan scraping when you need structured, scored wallet intelligence with DeFi context included.

## Known failure modes

- Invalid or malformed wallet address returns empty data or error
- Wallet with no on-chain activity returns empty result set
- Upstream RPC or DeFi data source unavailable causes partial or failed response
- Payment not processed via x402 results in 402 response blocking the call
- Unsupported network in query body may return no data

## How this service works

Live X/Twitter read API plus Base market intel for AI agents: profiles, search, timelines, replies, followers; Base gas, spot prices, token meta/pairs, Base token verdict cards, trending, DefiLlama TVL, wallet intel, x402 probe and text utilities. REST + MCP. Pay per call in USDC via x402 on Base and Solana — no API keys. Free upstream data + local scoring.

## Output

A JSON object containing on-chain wallet intelligence: token balances, historical transactions, DeFi protocol interactions, and wallet scoring/activity metrics for the queried address on Base (and potentially other supported chains).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Wallet 0x... (in JSON body)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x-data-gateway-wallet-intel-eaa5d099/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x-data-gateway.annushka1190.workers.dev](https://www.zero.xyz/host/x-data-gateway.annushka1190.workers.dev/llms.txt)
