---
title: "Transactions info"
method: POST
path: "/transactions/info"
tags: ["transactions"]
---

# Transactions info

`POST /transactions/info`

Get transactions by IDs. Max number of transactions is set by `waves.rest-api.transactions-by-address-limit`, 1000 by default.<br>Transactions in the response are in the same order as in the request.

## Request body

- object
  - `ids` TransactionId[]

## Response `200`

successful operation

- Transaction[]
  - union
    - GenesisTransaction
      - `id` string, required
      - `signature` string, required
      - `fee` integer, required
      - `timestamp` integer, required
      - `recipient` string, required
      - `amount` integer, required
    - NonGenesisTransaction
      - `timestamp` integer, required
      - `sender` string
      - `senderPublicKey` string
      - `id` string, required
      - `applicationStatus` 'succeeded' | 'script_execution_failed' — * `succeeded`: transaction is successful * `script_execution_failed`: the dApp script or the asset script failed See [Transaction Validation](https://docs.waves.tech/en/blockchain/transaction/transaction-validation) for details.
      - `version` integer
      - `type` integer, required
      - `proofs` Proof[]
      - `signature` string
      - `fee` integer, required
      - `feeAssetId` string

## Changes

- **2023-03-23** `26c5120a809c` — 6 info
  - added the media type `application/json;large-significand-format=string` for the response with the status `200`
  - added the required property `items/oneOf[#/components/schemas/NonGenesisTransaction]/oneOf[#/components/schemas/InvokeScriptTransaction]/stateChanges/burns/items/assetId` to the response with the `200` status
  - added the required property `items/oneOf[#/components/schemas/NonGenesisTransaction]/oneOf[#/components/schemas/InvokeScriptTransaction]/stateChanges/burns/items/quantity` to the response with the `200` status
  - added the required property `items/oneOf[#/components/schemas/NonGenesisTransaction]/oneOf[#/components/schemas/InvokeScriptTransaction]/stateChanges/issues/items/allOf[#/components/schemas/AssetDetailsBase]/quantity` to the response with the `200` status
  - …2 more
- **2022-08-30** `d6f5a027bea0` — 1 info
  - endpoint added
- **2021-05-27** `c901f97e3a8d` — 1 breaking
  - api removed without deprecation

[Change history](https://skmtc.dev/wavesplatform/apis/waves-full-node-chainid/changes/transactions/info/post.md)

---

[API](https://skmtc.dev/wavesplatform/apis/waves-full-node-chainid.md) · [All operations](https://skmtc.dev/wavesplatform/apis/waves-full-node-chainid/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/wavesplatform/waves-full-node-chainid/revisions/26c5120a809c/schema)
