v1

latestOpenAPI 3.1.02026-07-243035381.4 MB
Marketplace

Get wallet transfers DNA from Cryptoslam

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

4000 credits per API call

Returns token transfer records for a given wallet address, enriched with WalletDNA analytics—including sender and receiver wallet tiers ("size"), labels, current balances (token & USD), and each address's share of supply. Each record includes FDV and live token pricing. Supports filtering by participant address, direction, block range, or timestamp. Longer response times should be expected due to the richness of the data.

Supported blockchains:

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

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.

tokenAddressstring
Example:0x98d0baa52b2d063e780de12f615f963fe8537553

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

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

Transfer direction relative to the address.

numinteger
Example:25

Max number of transfer records to return (max 100).

order'asc' | 'desc'
Example:desc

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

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

Start from this UTC timestamp (overrides start_block).

startBlockinteger
Example:33297128

Block number to start from (inclusive).

startLogIndexinteger
Example:995

Log index within the block to resume pagination.

estimateCostboolean

When true, returns only the SLAM cost without performing the query.

Response

OK

slamnumber

SLAM token cost for this API call

chainstring

Blockchain network name

Example response

{
  "slam": 0.0096,
  "chain": "base",
  "cursor": {
    "start_block": 33297128,
    "start_log_index": 995
  },
  "transfers": [
    {
      "transaction": {
        "utc": "2025-07-24T19:01:47Z",
        "block": 33297180,
        "hash": "0xec17...",
        "method": "execute",
        "log_index": 403
      },
      "token": {
        "address": "0x98d0...",
        "symbol": "KAITO",
        "name": "KAITO",
        "usd": 0.45,
        "fdv": 40000000
      },
      "from": {
        "address": "0x6a0a...",
        "balance": {
          "decimals": 1.23,
          "usd": 0.56,
          "supply_share": 0.0001
        },
        "mass": {
          "tier": "Fish",
          "raw": 100
        }
      },
      "to": {
        "address": "0x37bb...",
        "name": "WETH/KAITO",
        "labels": "Uniswap V3 Pool",
        "balance": {
          "decimals": 99.1,
          "usd": 50.3,
          "supply_share": 0.0501
        },
        "mass": {
          "tier": "Whale",
          "raw": 1500
        }
      },
      "amount": {
        "raw": 293120000000000000,
        "decimals": 0.2931,
        "usd": 0.12
      }
    }
  ]
}