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
data
field of each transaction may include an additionaldecoded
object 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
decoded
object representing the parsed event.
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.
next_offset
to set the offset
parameter of the next page of results. Using your own offset
value will not have any effect.Compute Unit Cost
The Transactions endpoint has a fixed CU cost of 1 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
EVM wallet address
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 collectibles from chains with the "default" tag for the address. 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 <= 100
The 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.