---
title: "GET /v1/{chainName}/address/{walletAddress}/transactions_summary/"
method: GET
path: "/v1/{chainName}/address/{walletAddress}/transactions_summary/"
tags: ["get-transaction-summary-for-address"]
---

# GET /v1/{chainName}/address/{walletAddress}/transactions_summary/

`GET /v1/{chainName}/address/{walletAddress}/transactions_summary/`

Used to fetch the earliest and latest transactions, and the transaction count for a wallet. Also enriched with gas expenditure details and total ERC20 token transfers count.

## Path parameters

- `chainName` string, required
- `walletAddress` string, required

## Query parameters

- `quote-currency` string
- `with-gas` boolean
- `with-transfer-count` boolean

## Response `200`

Successful response

- object
  - `updated_at` string, date-time — The timestamp when the response was generated. Useful to show data staleness to users.
  - `address` string — The requested address.
  - `chain_id` integer — The requested chain ID eg: `1`.
  - `chain_name` string — The requested chain name eg: `eth-mainnet`.
  - `items` object[] — List of response items.
    - `total_count` integer — The total number of transactions.
    - `transfer_count` integer — Represents the total count of ERC-20 token movement events, including `Transfer`, `Deposit` and `Withdraw`.
    - `earliest_transaction` object — The earliest transaction detected.
      - `block_signed_at` string, date-time — The block signed timestamp in UTC.
      - `tx_hash` string — The requested transaction hash.
      - `tx_detail_link` string — The link to the transaction details using the Covalent API.
    - `latest_transaction` object — The latest transaction detected.
    - `gas_summary` object — The gas summary for the transactions.
      - `total_sent_count` integer — The total number of transactions sent by the address.
      - `total_fees_paid` string — b;The total transaction fees paid by the address, denoted in wei.
      - `total_gas_quote` number, double — The total transaction fees paid by the address, denoted in `quote-currency`.
      - `pretty_total_gas_quote` string — A prettier version of the quote for rendering purposes.
      - `average_gas_quote_per_tx` number, double — The average gas quote per transaction.
      - `pretty_average_gas_quote_per_tx` string — A prettier version of the quote for rendering purposes.
      - `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.

---

[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)
