# Basescan Recent Token Transfers

> Basescan Recent Token Transfers is a paid API for AI agents from origin-mcp.fly.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Retrieves recent token transfer events for a given smart contract on Base, using Basescan data.

## Facts

- Endpoint: GET https://origin-mcp.fly.dev/mcp/tools/basescan_recent_transfers
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/origin-mcp-fly-dev-7ff4812a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LRYrmfHxv8gDpU_UIk1aC

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 origin-mcp-fly-dev-7ff4812a
```

Example prompt: Pull the most recent token transfers for the contract 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on Base — I want to see who's been sending and receiving, amounts, and transaction hashes.

## When to prefer this

Use this endpoint when you need to audit or monitor recent token flow activity for a specific smart contract on the Base network. Prefer it over full transaction history endpoints when you specifically want ERC-20 or token transfer events rather than general transaction data. Ideal for tracking who is actively trading or moving a particular token.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty result
- Contract exists but has no recent transfers returns empty list
- Rate limit or payment failure returns 402 or 429 error
- Non-Base-network contract address may return no results
- Malformed address format causes a validation error

## How this service works

Get recent token transfers for a contract

## Output

A list of recent token transfer events for the specified contract, including sender address, recipient address, token amount, transaction hash, block number, and timestamp of each transfer.

## Example request

```json
{
 "count": 20,
 "contractAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
}
```

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/origin-mcp-fly-dev-7ff4812a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from origin-mcp.fly.dev](https://www.zero.xyz/host/origin-mcp.fly.dev/llms.txt)
