- send - Outgoing transfers of tokens or native assets
- receive - Incoming transfers of tokens or native assets
- mint - Token minting activities
- burn - Token burning activities
- swap - Token swaps and exchanges
- approve - Token approval transactions
- call - Generic contract interactions that don’t fall into the above categories
- Native token transfers
- ERC20 token transfers with metadata (symbol, decimals)
- ERC721 (NFT) transfers with token IDs
- Contract interactions with decoded function calls
Data Finality & Re-orgs
Sim APIs are designed to automatically detect and handle blockchain re-organizations. We detect any potentially broken parent-child block relationships as soon as they arise and update our internal state to match the onchain state, typically within a few hundred milliseconds. This re-org handling is an automatic, non-configurable feature designed to provide the most reliable data.Token Filtering
We include all the data needed for custom filtering in the responses, allowing you to implement your own filtering logic. For a detailed explanation of our approach, see our Token Filtering guide.Compute Unit Cost
The Activity endpoint has a fixed CU cost of 3 per request. See the Compute Units page for detailed information.Headers
Used for authenticating requests. Provide an API key with a purpose of Sim API
. See Authentication.
Path Parameters
Wallet address to get activity for
Query Parameters
Filter by chain(s). Accepts a single numeric chain ID (e.g. ?chain_ids=1
), a single chain name (e.g. ?chain_ids=ethereum
), or a comma separated list of either (e.g. ?chain_ids=1,137
or ?chain_ids=ethereum,polygon
). If omitted, results include activity from chains with the "default" tag for the address. See the Supported Chains Tags section.
The offset to paginate through result sets. This is a cursor being passed from the previous response, only use what the backend returns here.
Maximum number of activity items to return. Default is 20 when not provided. Values above 100 are reduced to 100.
1 <= x <= 100