Activities

Provides rich transaction activity data for a wallet(s).

Request

Query Params

  • lookback_days - The number of days, relative to today, to fetch transaction activity for.

  • limit - The number of elements to return in a single API call.

  • cursor (optional) - Each response will include the cursor key that you can use in this param to get the next page of results. You have hit the last page when the items array is empty.

Body

Specify the chain and address for each wallet you would like to receive data for. It is recommended to keep the total number of wallets under 10.

[
    {
        "chain": "ethereum",
        "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045" 
    },
    {
        "chain": "base",
        "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
    }
]
Supported Chains
  • Bitcoin bitcoin

  • EVM Chains

    • Abstract abstract

    • Abstract Testnet abstract_testnet

    • ApeChain apechain

    • Arbitrum arbitrum

    • Base base

    • BSC bsc

    • Ethereum ethereum

    • Polygon polygon

    • Monad Testnet monad_testnet

    • SEI sei

  • Solana solana (limited to 7 days of retention - support for full history is in development)

  • 🌱 SUI sui (data only from 2025 and only has Cetus DEX trades)

Response

Each item in the response represents a transaction, and includes a list of zero or more transaction labels, asset transfers and activities.

The following table lists the features we support by chain:

Feature
EVM
Solana
Sui (alpha)

Data amount

To genesis

7 days only

2025 only

Support for token transfers

Activity type approval User approved a spender for an asset

Activity type swapped_tokens User swapped one asset for another

🌱 (only Cetus DEX trades)

Activity type sign_tx User initiated the transaction

Activity type dapp_interaction User interacted with a DApp

Last updated

Was this helpful?