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

# Transactions API

> Retrieve, manage, and replay transactions across your wallets.

The Transactions API gives you full visibility into every transaction that has passed through your Blockradar wallets. You can also use it to cancel pending transactions, retry failed ones, and resend missed webhooks.

## What you can do

* List and filter transactions across a wallet
* Retrieve details for a single transaction
* Resend a webhook for any transaction
* Cancel a pending transaction
* Retry a failed transaction
* Trigger an asset sweep manually

## Endpoints

| Method | Endpoint                                                          | Description                      |
| ------ | ----------------------------------------------------------------- | -------------------------------- |
| `GET`  | `/wallets/{walletId}/transactions`                                | List all transactions            |
| `GET`  | `/wallets/{walletId}/transactions/{transactionId}`                | Get a single transaction         |
| `POST` | `/wallets/{walletId}/transactions/{transactionId}/resend-webhook` | Resend webhook for a transaction |
| `POST` | `/wallets/{walletId}/transactions/{transactionId}/sweep`          | Trigger asset sweep              |
| `GET`  | `/wallets/{walletId}/transactions/webhook-logs`                   | View webhook delivery logs       |
| `POST` | `/wallets/{walletId}/transactions/{transactionId}/cancel`         | Cancel a pending transaction     |
| `POST` | `/wallets/{walletId}/transactions/{transactionId}/retry`          | Retry a failed transaction       |

<Card title="Full API Reference" icon="book" href="/en/api-reference/transactions/get-transactions">
  View all transaction endpoints in the API Reference tab.
</Card>
