---
title: "Get transactions for a group"
method: GET
path: "/v1/cryptos/{cryptoCode}/groups/{groupId}/transactions"
tags: ["Groups", "Transactions"]
---

# Get transactions for a group

`GET /v1/cryptos/{cryptoCode}/groups/{groupId}/transactions`

Retrieves a list of transactions associated with the specified group.

## Path parameters

- `cryptoCode` string, required
- `groupId` string, required

## Query parameters

- `includeTransaction` boolean
- `from` integer
- `to` integer

## Response `200`

Transactions retrieved successfully.

- TransactionResponse[]
  - `blockHash` string — The hash of the block containing this transaction. Will be `null` if the transaction is unconfirmed.
  - `confirmations` integer — Number of confirmations the transaction has.
  - `height` integer — The block height. Will be `null` if the transaction is unconfirmed.
  - `transactionId` string — The transaction ID.
  - `transaction` string — Raw transaction in hex format. Included only if `includeTransaction` is `true`.
  - `outputs` TransactionOutput[] — List of outputs related to the tracked source.
    - `address` string — The address of the output.
    - `scriptPubKey` string — The scriptPubKey of the output in hexadecimal format.
    - `index` integer — The position of the referenced output in the previous transaction's output list'.
    - `feature` string, nullable — Specifies the type of address generated. Possible values are: - `Deposit`: A deposit address from the external chain (`0/x`). - `Change`: A change address from the internal chain (`1/x`). - `Direct`: An address from the direct chain (`x`). - `Custom`: An address using a custom key path template.
    - `value` integer — The amount of the output in satoshis.
    - `keyPath` string — The derivation path if the output is associated with the wallet.
  - `inputs` TransactionInput[] — List of inputs related to the tracked source.
    - `inputIndex` integer — The position of this input in the transaction's input list.
    - `transactionId` string — The transaction ID (hash) of the previous transaction whose output is being spent.
    - `index` integer — The position of the referenced output in the previous transaction's output list'.
    - `feature` string, nullable — Specifies the type of address generated. Possible values are: - `Deposit`: A deposit address from the external chain (`0/x`). - `Change`: A change address from the internal chain (`1/x`). - `Direct`: An address from the direct chain (`x`). - `Custom`: An address using a custom key path template.
    - `address` string — The address of the output.
    - `scriptPubKey` string — The scriptPubKey of the output being spent, in hexadecimal format.
    - `keyPath` string — The derivation path if the output is associated with the wallet.
    - `value` integer — The amount of the output being spent, in satoshis.
  - `timestamp` integer — The UNIX timestamp indicating when the transaction was first seen by NBXplorer.
  - `balanceChange` integer — Net balance change for the wallet due to this transaction.
  - `replaceable` boolean — `true` if the transaction can be replaced (the transaction has RBF activated, is unconfirmed, and is not an intermediate transaction in a chain of unconfirmed transactions).
  - `replacing` string, nullable — If present, indicates the transaction ID that this transaction is replacing via RBF.
  - `replacedBy` string, nullable — If present, indicates the transaction ID that replaced this transaction via RBF.

## Other responses

- `404` — Derivation scheme not found.

## Changes

- **2024-12-27** `dca02386fafa` — 2 info
  - added the optional property `items/inputs/items/feature` to the response with the `200` status
  - added the optional property `items/outputs/items/feature` to the response with the `200` status
- **2024-11-28** `77066dc78f59` — 1 info
  - endpoint added
- **2024-11-18** `b5092f204599` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/btcpayserver/apis/nbxplorer-api/changes/v1/cryptos/:cryptoCode/groups/:groupId/transactions/get.md)

---

[API](https://skmtc.dev/btcpayserver/apis/nbxplorer-api.md) · [All operations](https://skmtc.dev/btcpayserver/apis/nbxplorer-api/llms.txt) · [OpenAPI document](https://skmtc.dev/btcpayserver/apis/nbxplorer-api/revisions/5ff4bcf62192?raw)
