v1

latestOpenAPI 3.1.02026-07-243035381.4 MB
Marketplace

Get wallet transfers from Cryptoslam

/v4/data/marketplace/cryptoslam/wallet/transfers

25 credits per API call

Returns token transfers for a specified wallet address, with optional filtering by token address, participant address, direction, block range, or timestamp range. You may filter by either tokenAddress or address, but not both.

Supported blockchains:

  • Ethereum - ethereum-mainnet
  • Base - base-mainnet
get/v4/data/marketplace/cryptoslam/wallet/transfers

Query parameters

chain'ethereum-mainnet' | 'base-mainnet' required

Chains supported by the tokens and wallets endpoints.

The blockchain to work with.

walletAddressstring required
Example:0xF977814e90dA44bFA03b6295A0616a897441aceC

The wallet address to fetch transfers for.

addressstring
Example:0x6a0a87ec975DF3D2A4d6159Db55B034D4313ED66

Optional filter to only include transfers involving this address. Mutually exclusive with tokenAddress.

tokenAddressstring
Example:0x98d0baa52b2d063e780de12f615f963fe8537553

Optional filter transfers for this ERC-20 token contract address. Mutually exclusive with address.

direction'sent' | 'received' | 'all'
Example:all

Transfer direction relative to the address.

numinteger
Example:25

The maximum number of records to return (1-1000).

order'asc' | 'desc'
Example:desc

Sort order: asc (oldest first) or desc (newest first).

startTimestampstring date-time
Example:2025-07-24T19:01:47Z

Start searching from this UTC timestamp (inclusive). Overrides start_block when provided.

startBlockinteger
Example:33297128

Block number to start the search from (inclusive). Defaults to the latest block in desc order, or the genesis block in asc order.

startLogIndexinteger
Example:995

Log index within the starting block to resume pagination or refine the starting point.

estimateCostboolean

When true, returns only the SLAM token cost for this query without performing the actual query.

Response

OK

slamnumber

The SLAM token cost for this API call

chainstring

The blockchain network name

Example response

{
  "slam": 0.00960899547185145,
  "chain": "base",
  "cursor": {
    "start_block": 33297128,
    "start_log_index": 995
  },
  "transfers": [
    {
      "transaction": {
        "utc": "2025-07-24T19:01:47Z",
        "block": 33297180,
        "hash": "0xec1765d57f51a6a7274c33991b42e1c1bff6f760462c0409b13a2632a8ed4934",
        "method": "execute",
        "log_index": 403
      },
      "token": {
        "address": "0x98d0baa52b2d063e780de12f615f963fe8537553",
        "symbol": "KAITO",
        "name": "KAITO"
      },
      "from": {
        "address": "0x6a0a87ec975DF3D2A4d6159Db55B034D4313ED66"
      },
      "to": {
        "address": "0x37bb450b17721c6720040a150029e504766e9777",
        "name": "WETH/KAITO",
        "labels": "Uniswap V3 Pool"
      },
      "amount": {
        "raw": 293120070211072300,
        "decimals": 0.2931200702110723
      }
    }
  ]
}