# 402.com.tr Wallet Summary

> 402.com.tr Wallet Summary is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-16).

Returns total transaction count, first/last activity timestamps, and wallet age in days for a given Base address, designed for sybil screening and counterparty trust assessment.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/wallet-summary
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-wallet-summary-186e28f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UBVTL3nLDjlIIsKr8QIdk

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 402-com-tr-wallet-summary-186e28f5
```

Example prompt: Can you pull the wallet summary for Base address 0x742d35Cc6634C0532925a3b844Bc454e4438f44e — I want to know how old it is, how many transactions it's made, and when it was last active so I can decide whether to trust it?

## When to prefer this

Use this endpoint when you need a quick, low-cost ($0.03) summary of a Base wallet's transaction history and age for sybil detection, rug screening, or counterparty trust checks — without needing full transaction details. Prefer this over full on-chain lookups when a lightweight activity profile is sufficient.

## Known failure modes

- Invalid or malformed wallet address returns an error response
- Address not found on Base (zero activity) may return empty or null fields
- Network timeout if Base RPC is slow
- Payment failure (insufficient USDC balance) returns 402 Payment Required
- Rate limiting may occur under high call volume

## How this service works

Wallet age in days, first & last activity timestamps, and outgoing transaction count for any Base address — read straight from the Base archive, not a 30-day feed, so it dates wallets of any age. Counts and last-activity cover what the wallet SENT; inbound transfers don't raise the nonce and aren't counted. Built for sybil screening and counterparty trust checks.

## Output

Returns an object containing the wallet's total transaction count on Base, the timestamp of its first recorded activity, the timestamp of its most recent activity, and the wallet age expressed in days — enabling quick sybil/rug screening or counterparty trust evaluation.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Wallet address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-wallet-summary-186e28f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
