---
title: "List internal transactions"
method: GET
path: "/v1/chains/{chainId}/addresses/{address}/transactions:listInternals"
tags: ["EVM Transactions"]
---

# List internal transactions

`GET /v1/chains/{chainId}/addresses/{address}/transactions:listInternals`

Returns a list of internal transactions for an address and chain. Filterable by block range.

Note that the internal transactions list only contains `CALL` or `CALLCODE` transactions with a non-zero value and `CREATE`/`CREATE2`/`CREATE3` transactions. To get a complete list of internal transactions use the `debug_` prefixed RPC methods on an archive node.

## Path parameters

- `chainId` string, required
- `address` string, required

## Query parameters

- `startBlock` number
- `endBlock` number
- `pageToken` string
- `pageSize` integer

## Response `200`

Successful response

- ListInternalTransactionsResponse
  - `nextPageToken` string — A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
  - `transactions` InternalTransaction[], required
    - `blockNumber` string, required — The block number on the chain.
    - `blockTimestamp` number, required — The block creation (proposal) timestamp in seconds
    - `blockTimestampMilliseconds` number — The block creation (proposal) timestamp in milliseconds. Available only after Granite upgrade.
    - `blockHash` string, required — The block hash identifier.
    - `txHash` string, required — The transaction hash identifier.
    - `from` RichAddress, required
      - `name` string — The contract name.
      - `symbol` string — The contract symbol.
      - `decimals` number — The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
      - `logoUri` string — The logo uri for the address.
      - `address` string, required — A wallet or contract address in mixed-case checksum encoding.
    - `to` RichAddress, required
      - `name` string — The contract name.
      - `symbol` string — The contract symbol.
      - `decimals` number — The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
      - `logoUri` string — The logo uri for the address.
      - `address` string, required — A wallet or contract address in mixed-case checksum encoding.
    - `internalTxType` 'UNKNOWN' | 'CALL' | 'CREATE' | 'CREATE2' | 'CREATE3' | 'CALLCODE' | 'DELEGATECALL' | 'STATICCALL', required
    - `value` string, required
    - `isReverted` boolean, required — True if the internal transaction was reverted.
    - `gasUsed` string, required
    - `gasLimit` string, required

## Other responses

- `400` — Bad requests generally mean the client has passed invalid or malformed parameters. Error messages in the response could help in evaluating the error.
- `401` — When a client attempts to access resources that require authorization credentials but the client lacks proper authentication in the request, the server responds with 401.
- `403` — When a client attempts to access resources with valid credentials but doesn't have the privilege to perform that action, the server responds with 403.
- `404` — The error is mostly returned when the client requests with either mistyped URL, or the passed resource is moved or deleted, or the resource doesn't exist.
- `429` — This error is returned when the client has sent too many, and has hit the rate limit.
- `500` — The error is a generic server side error that is returned for any uncaught and unexpected issues on the server side. This should be very rare, and you may reach out to us if the problem persists for a longer duration.
- `502` — This is an internal error indicating invalid response received by the client-facing proxy or gateway from the upstream server.
- `503` — The error is returned for certain routes on a particular Subnet. This indicates an internal problem with our Subnet node, and may not necessarily mean the Subnet is down or affected.

---

[API](https://skmtc.dev/avax/apis/data-api.md) · [All operations](https://skmtc.dev/avax/apis/data-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/avax/data-api/revisions/86448a21e2b1/schema)
