GET
https://api.sim.dune.com
/
v1
/
evm
/
transactions
/
{uri}
curl --request GET \
  --url https://api.sim.dune.com/v1/evm/transactions/{uri} \
  --header 'X-Sim-Api-Key: <x-sim-api-key>'
{
  "transactions": [
    {
      "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
      "block_hash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
      "block_number": "12345678",
      "block_time": "2023-11-07T05:31:56Z",
      "block_version": 1,
      "chain": "ethereum",
      "from": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
      "to": "0x1234567890abcdef1234567890abcdef12345678",
      "data": "0x",
      "gas_price": "0x1234567890",
      "hash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
      "index": "0",
      "max_fee_per_gas": "0x1234567890",
      "max_priority_fee_per_gas": "0x1234567890",
      "nonce": "0x1234",
      "transaction_type": "0x2",
      "value": "0x1234567890abcdef"
    }
  ],
  "next_offset": "dKMBWDLqM7vlyn5OMEXsLWp0nI4AAAABA5JLazNO7x4poVGqUwsgxgqvvIg",
  "request_time": "2023-11-07T05:31:56Z",
  "response_time": "2023-11-07T05:31:56Z",
  "wallet_address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
}

The Transactions API allows for quick and accurate lookup of transactions associated with an address. Transactions are ordered by descending block time, so the most recent transactions appear first.

Pagination

This endpoint is using cursor based pagination. You can use the limit 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.

You can only use the value from next_offset to set the offset parameter of the next page of results. Using your own offset value will not have any effect.

Headers

X-Sim-Api-Key
string
required

API key to access the service

Path Parameters

uri
string
required

EVM address

Query Parameters

chain_ids
string | null

A comma separated list of chain_ids or tags for blockchains to get transactions for. Examples: chain_ids=1,8453,10, chain_ids=mainnet,testnet.

limit
integer | null

Maximum number of results to return

Required range: x >= 0
offset
string | null

The offset to paginate through result sets. This is a cursor being passed from the previous response, only use what the backend returns here.

Response

200
application/json

Successful Response

The response is of type object.