v1

latestOpenAPI 3.0.02026-07-26268286602.5 KB
transactions

Get on-chain state changes caused by a specific transaction

Retrieves state changes (balance changes, token transfers) caused by a specific transaction.

get/{chain_id}/api/v2/transactions/{transaction_hash_param}/state-changes

Path parameters

transaction_hash_paramstring required

Transaction hash in the path

chain_idstring required

The ID of the blockchain

Query parameters

items_countinteger

Number of items per page

state_changes_countinteger

Cumulative number of state changes to skip for keyset-based pagination

Response

State changes caused by the specified transaction, with pagination.

next_page_paramsobject nullable required

Example response

{
  "items": [
    {
      "token": {
        "icon_url": "https://example.com"
      }
    }
  ],
  "next_page_params": {
    "state_changes_count": 50
  }
}