---
title: "GET /v1/allchains/transactions/"
method: GET
path: "/v1/allchains/transactions/"
tags: ["get-allchains-transactions"]
---

# GET /v1/allchains/transactions/

`GET /v1/allchains/transactions/`

Fetch paginated transactions for up to 10 EVM addresses and 10 EVM chains with one API call. Useful for building Activity Feeds.

## Query parameters

- `chains` string
- `addresses` string
- `limit` integer
- `before` string
- `after` string
- `with-logs` boolean
- `with-decoded-logs` boolean
- `quote-currency` string

## Response `200`

Successful response

- object
  - `updated_at` string, date-time — Timestamp for when the data was last updated.
  - `cursor_before` string — Pagination cursor pointing to the previous page.
  - `cursor_after` string — Pagination cursor pointing to the next page.
  - `quote_currency` string — The requested quote currency eg: `USD`.
  - `items` object[] — List of transactions returned by the API.
    - `block_height` integer — The height of the block.
    - `block_signed_at` string, date-time — The signed block timestamp in UTC.
    - `block_hash` string — The hash of the block. Use it to remove transactions from blocks that are reorged.
    - `tx_hash` string — The transaction hash.
    - `tx_offset` integer — The offset is the position of the tx in the block.
    - `miner_address` string — The address of the miner who mined the block.
    - `from_address` string
    - `to_address` string — The recipient's wallet address.
    - `value` string — b;The value of the transaction in wei.
    - `value_quote` number, double — The value attached in `quote-currency` to this tx.
    - `pretty_value_quote` string — A prettier version of the quote for rendering purposes.
    - `gas_offered` integer — The gas offered for the transaction.
    - `gas_spent` integer — The gas actually spent by the transaction.
    - `gas_price` integer — The gas price at the time of this tx in wei.
    - `gas_quote` number, double — The gas spent in `quote-currency` denomination.
    - `pretty_gas_quote` string — A prettier version of the quote for rendering purposes.
    - `gas_quote_rate` number, double — The native gas exchange rate for the requested `quote-currency`.
    - `fees_paid` string — b;The total transaction fees (`gas_price` * `gas_spent`) paid for this tx, denoted in wei.
    - `gas_metadata` object — The requested chain native gas token metadata.
      - `contract_decimals` integer — Use contract decimals to format the token balance for display purposes - divide the balance by `10^{contract_decimals}`.
      - `contract_name` string — The string returned by the `name()` method.
      - `contract_ticker_symbol` string — The ticker symbol for this contract. This field is set by a developer and non-unique across a network.
      - `contract_address` string — Use the relevant `contract_address` to lookup prices, logos, token transfers, etc.
      - `supports_erc` string[] — A list of supported standard ERC interfaces, eg: `ERC20` and `ERC721`.
      - `logo_url` string — The contract logo URL.
    - `successful` boolean — Indicated whether the transaction was successful or failed.
    - `chain_id` string — The chain ID of the blockchain where the transaction occurred.
    - `chain_name` string — The chain name of the blockchain where the transaction occurred.
    - `explorers` object[] — The block explorer links for this transaction.
      - `label` string — The name of the explorer.
      - `url` string — The URL of the explorer.
    - `log_events` object[] — Event logs generated by the transaction.
      - `block_signed_at` string, date-time — The block signed timestamp in UTC.
      - `block_height` integer — The height of the block.
      - `tx_offset` integer — The offset is the position of the tx in the block.
      - `log_offset` integer — The offset is the position of the log entry within an event log.
      - `tx_hash` string — The requested transaction hash.
      - `raw_log_topics` string[] — The log topics in raw data.
      - `sender_contract_decimals` integer — Use contract decimals to format the token balance for display purposes - divide the balance by `10^{contract_decimals}`.
      - `sender_name` string — The name of the sender.
      - `sender_contract_ticker_symbol` string
      - `sender_address` string — The address of the sender.
      - `sender_logo_url` string — The contract logo URL.
      - `supports_erc` string[] — A list of supported standard ERC interfaces, eg: `ERC20` and `ERC721`.
      - `sender_factory_address` string — The address of the deployed UniswapV2 like factory contract for this DEX.
      - `raw_log_data` string — The log events in raw.
      - `decoded` object — The decoded item.
        - `name` string
        - `signature` string
        - `params` object[]
          - `name` string
          - `type` string
          - `indexed` boolean
          - `decoded` boolean
          - `value` string

---

[API](https://skmtc.net/covalenthq/apis/goldrush-multichain-data-apis.md) · [All operations](https://skmtc.net/covalenthq/apis/goldrush-multichain-data-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/covalenthq/goldrush-multichain-data-apis/revisions/c099830c76a0/schema)
