# TaskFleet Wallet Intel

> TaskFleet Wallet Intel is a paid API for AI agents from taskfleet.net, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Analyzes any Base (EVM) wallet address to return native and token balances, transaction history summary, top counterparties, and rule-based activity classification, with optional plain-English narrative.

## Facts

- Endpoint: POST https://taskfleet.net/wallet-intel
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/taskfleet-wallet-intel-f89bb5b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8X-TWGQvCf0pfhV-Ro4y5

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 taskfleet-wallet-intel-f89bb5b5 -d '<json body>'
```

Example prompt: Can you analyze the Base wallet 0x4e83...aB12 for me — pull the token balances, transaction history summary, top counterparties, and classify what kind of activity this address has been doing? Include a plain-English explanation too.

## When to prefer this

Choose this endpoint when you need a comprehensive, structured on-chain intelligence report for a Base network wallet — especially when you want balances, history, counterparties, and activity classification all in one call. Prefer it over raw RPC calls when you need rule-based classification or a plain-English narrative without writing custom analysis logic. Best for due diligence, airdrop screening, fraud detection, or portfolio snapshots on the Base chain specifically.

## Known failure modes

- Invalid or malformed EVM address returns an error JSON
- Address with no on-chain activity may return empty balances and minimal history
- RPC or Basescan rate limits may cause transient failures
- Very active wallets with large transaction counts may return truncated history summaries
- Non-Base EVM addresses (e.g. Ethereum mainnet) may return no results or unexpected data

## How this service works

On-chain wallet analysis for any Base (EVM) address: native + token balances, transaction history summary, top counterparties, and rule-based activity classification. Guaranteed-valid JSON from free public RPC + Basescan. Input: { address, explain? (bool: add a plain-English narrative) }.

## Output

Returns a guaranteed-valid JSON object containing: native ETH balance on Base, all ERC-20 token balances, a summary of transaction history (counts, volume, timeframe), top counterparty addresses by interaction frequency, a rule-based activity classification (e.g. trader, holder, bot), and optionally a plain-English narrative paragraph explaining the wallet's overall on-chain behavior.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "0x EVM address on Base"
      },
      "explain": {
       "type": "boolean",
       "description": "If true, add a short LLM narrative summary"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/taskfleet-wallet-intel-f89bb5b5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from taskfleet.net](https://www.zero.xyz/host/taskfleet.net/llms.txt)
