> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dzap.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Batch Status

> Track the status of several trade transactions in a single call.

Check several transactions in one call. Accepts comma-separated `txHashes`/`txIds` aligned positionally to comma-separated `chainIds`, and returns an **array** of the same response shape as [Status](/api/trade/status).

## Query

<ParamField query="txHashes" type="string">Comma-separated transaction hashes.</ParamField>

<ParamField query="txIds" type="string">Comma-separated DZap transaction IDs.</ParamField>

<ParamField query="chainIds" type="string" required>Comma-separated chain IDs, aligned to `txHashes`/`txIds`.</ParamField>

## Response

Array of objects, each with the same shape as the [Status](/api/trade/status) response.

<RequestExample>
  ```bash curl theme={null}
  curl "https://api.dzap.io/v1/status/multi?txHashes=0x123...,0x456...&chainIds=1,42161"
  ```

  ```ts SDK theme={null}
  const multiStatus = await dzap.getTradeMultiTxnStatus({
    txHashes: '0x123...,0x456...',
    chainIds: '1,42161',
  });
  ```
</RequestExample>
