# 402.com.tr Token Transfer History

> 402.com.tr Token Transfer History 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-14).

Retrieves recent ERC-20 token transfers (in/out) for a specific wallet address and token contract, including amounts, USD values, counterparties, transaction hashes, and timestamps via Covalent.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/token-transfers
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-token-transfer-history-c6ff5aaf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pq97UBh_8C1tm-qzHcE8b

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-token-transfer-history-c6ff5aaf
```

Example prompt: Pull up the recent transfer history for USDC (contract 0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA) on my Base wallet 0x742d35Cc6634C0532925a3b8D4C9C4E4F8e1a2b3 — I need to see the in/out amounts, USD values, and counterparties.

## When to prefer this

Use this endpoint when you need granular per-token transfer history for a specific wallet on Base, especially for cost basis tracking, tax reporting, or monitoring token flows between counterparties. Prefer this over the full portfolio endpoint when you only care about movement history for one token rather than current balances across all tokens.

## Known failure modes

- Invalid wallet address format returns an error
- Invalid or unrecognized token contract address returns empty results or error
- Covalent upstream outage causes delayed or failed response
- No transfer history found for the given wallet/token pair returns an empty list
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Recent transfers of a specific token for a wallet — direction (in/out), amount, USD value, counterparty, tx hash and time, via Covalent. For agents tracking token flows and cost basis.

## Output

A list of recent ERC-20 token transfers for the specified wallet and token contract, each containing transfer direction (in/out), token amount, USD value at time of transfer, counterparty wallet address, transaction hash, and timestamp.

## 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",
      "token"
     ],
     "properties": {
      "token": {
       "type": "string",
       "description": "Token contract"
      },
      "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-token-transfer-history-c6ff5aaf/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)
