Transactions
Retrieve granular transaction details including block information, gas data, transaction types, and raw transaction values.
Documentation Index
Fetch the complete documentation index at: https://docs.sim.dune.com/llms.txt
Use this file to discover all available pages before exploring further.
Decoded transactions
Enable decoded transaction data and logs by adding the?decode=true query parameter to your request.
When decoding is enabled, two types of data may be decoded:
- Transaction call data: The
datafield of each transaction may include an additionaldecodedobject at the root level of the transaction, representing the parsed function call. - Event logs: When a transaction contains EVM logs, each log may include an additional
decodedobject representing the parsed event.
Warnings
When requesting transactions for specific chains using thechain_ids parameter, the API may return warnings if some requested chain IDs are not supported. Unlike errors, warnings indicate non-fatal issues where the request can still be partially fulfilled.
When unsupported chain IDs are included in your request, the API will:
- Return transactions for all supported chains you requested
- Include a
warningsarray in the response with details about the unsupported chains
Example: Request with Unsupported Chain IDs
If you request?chain_ids=1,9999,10, the API returns transactions for chains 1 and 10 (supported), and includes a warning about chain 9999 (unsupported):
Pagination
This endpoint is using cursor based pagination. You can use thelimit parameter to define the maximum page size.
Results might at times be less than the maximum page size.
The next_offset value is included in the initial response and can be utilized to fetch the next page of results by passing it as the offset query parameter in the next request.
Compute Unit Cost
The Transactions endpoint has a fixed CU cost of 1 per request. See the Compute Units page for detailed information.Real-Time Updates
Authorizations
API key for authentication. Obtain your key from the Dune dashboard at sim.dune.com.
Path Parameters
EVM wallet address
^0x[a-fA-F0-9]{40}$Query Parameters
Filter by chain(s). Accepts numeric chain IDs and/or tags. Provide a single value (e.g. ?chain_ids=1 or ?chain_ids=mainnet) or a comma-separated list (e.g. ?chain_ids=1,8543,testnet). Chain names are not accepted. If this query parameter is omitted, results include transactions from chains with the default tag. See the Supported Chains Tags section.
Maximum number of results to return. Default is 100 when not provided. Values above 100 are reduced to 100.
1 <= x <= 100The offset to paginate through result sets. This is a cursor being passed from the previous response, only use what the backend returns here.
When true, it includes decoded transaction logs in the response. Accepts only boolean values true or false. You can also omit this parameter to disable decoding. Invalid values will return an error.
Response
Successful Response
"0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
Array of warnings that occurred during request processing. Warnings indicate non-fatal issues (e.g., unsupported chain IDs) where the request can still be partially fulfilled.