Search transactions
Search for transactions using partial text matching across hashes, addresses, and workflow IDs. Returns up to 50 matching transactions. Use this when you have part of a hash or address but not the exact transaction ID.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
q | string | Yes | Search query (minimum 3 characters recommended) |
type | string | No | Search type to optimize performance |
organizationId | string | No | Limit to specific organization (admin only) |
Search Types
| Type | Description |
|---|---|
all | Search across all fields (comprehensive, slower) |
hash | Blockchain transaction hash only |
address | Sender or recipient addresses |
workflowId | Temporal workflow ID only |
How Matching Works
Searches use partial text matching (case-insensitive). A transaction matches if the search query appears anywhere in the searched field.
Query Examples
| Query Type | Example Query | What It Finds |
|---|---|---|
| Hash | 0x8fc | All transactions with hashes containing "0x8fc" |
| Address | 0x1234567890ab | Transactions where sender OR recipient contains this |
| Workflow ID | transaction-workflow-2024 | All workflow IDs containing "2024" |
Response Fields
Returns an array of matching transactions with the same structure as the list endpoint:
| Field | Type | Description |
|---|---|---|
id | UUID | Unique transaction identifier |
createdAt | datetime | Transaction creation timestamp (ISO 8601, UTC) |
updatedAt | datetime | Last update timestamp (ISO 8601, UTC) |
workflowId | string | Workflow identifier for transaction orchestration |
externalId | string | External reference ID (nullable) |
senderAddress | string | Sender blockchain address (0x...) |
recipientAddress | string | Recipient blockchain address (0x...) |
value | string | Transaction value in human-readable format |
asset | string | Asset symbol (e.g., ETH, USDC) |
network | string | Network chain ID as string |
chainId | number | Blockchain network chain ID |
organizationId | UUID | Owning organization ID |
recipientOrgId | UUID | Recipient organization ID (for internal transfers) |
nonce | number | Transaction nonce |
hash | string | Blockchain transaction hash (nullable until submitted) |
status | enum | Current lifecycle status (see Status Values below) |
failureReason | string | Failure description if status is FAILED (nullable) |
gasLimit | string | Maximum gas units allocated |
gasPrice | string | Gas price in Gwei (legacy transactions, nullable) |
maxFeePerGas | string | EIP-1559 max fee per gas in Gwei |
maxPriorityFeePerGas | string | EIP-1559 priority fee in Gwei |
gasUsed | string | Actual gas consumed (after confirmation) |
blockNumber | string | Block number where transaction was mined |
blockHash | string | Block hash where transaction was mined |
timestamp | datetime | Blockchain confirmation timestamp (ISO 8601) |
rawTransaction | string | Signed raw transaction hex data |
metadata | object | Additional transaction metadata (see Metadata Fields) |
auditLogs | array | Complete timeline of all transaction events |
Use Cases
- Find transactions when you only have part of a hash
- Discover all transactions involving a specific address
- Locate transactions by partial workflow ID from logs
- Build search bars in transaction dashboards
Required Permission
transactions:read
Search transactions
Search for transactions using partial text matching across hashes, addresses, and workflow IDs. Returns up to 50 matching transactions. Use this when you have part of a hash or address but not the exact transaction ID.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
q | string | Yes | Search query (minimum 3 characters recommended) |
type | string | No | Search type to optimize performance |
organizationId | string | No | Limit to specific organization (admin only) |
Search Types
| Type | Description |
|---|---|
all | Search across all fields (comprehensive, slower) |
hash | Blockchain transaction hash only |
address | Sender or recipient addresses |
workflowId | Temporal workflow ID only |
How Matching Works
Searches use partial text matching (case-insensitive). A transaction matches if the search query appears anywhere in the searched field.
Query Examples
| Query Type | Example Query | What It Finds |
|---|---|---|
| Hash | 0x8fc | All transactions with hashes containing "0x8fc" |
| Address | 0x1234567890ab | Transactions where sender OR recipient contains this |
| Workflow ID | transaction-workflow-2024 | All workflow IDs containing "2024" |
Response Fields
Returns an array of matching transactions with the same structure as the list endpoint:
| Field | Type | Description |
|---|---|---|
id | UUID | Unique transaction identifier |
createdAt | datetime | Transaction creation timestamp (ISO 8601, UTC) |
updatedAt | datetime | Last update timestamp (ISO 8601, UTC) |
workflowId | string | Workflow identifier for transaction orchestration |
externalId | string | External reference ID (nullable) |
senderAddress | string | Sender blockchain address (0x...) |
recipientAddress | string | Recipient blockchain address (0x...) |
value | string | Transaction value in human-readable format |
asset | string | Asset symbol (e.g., ETH, USDC) |
network | string | Network chain ID as string |
chainId | number | Blockchain network chain ID |
organizationId | UUID | Owning organization ID |
recipientOrgId | UUID | Recipient organization ID (for internal transfers) |
nonce | number | Transaction nonce |
hash | string | Blockchain transaction hash (nullable until submitted) |
status | enum | Current lifecycle status (see Status Values below) |
failureReason | string | Failure description if status is FAILED (nullable) |
gasLimit | string | Maximum gas units allocated |
gasPrice | string | Gas price in Gwei (legacy transactions, nullable) |
maxFeePerGas | string | EIP-1559 max fee per gas in Gwei |
maxPriorityFeePerGas | string | EIP-1559 priority fee in Gwei |
gasUsed | string | Actual gas consumed (after confirmation) |
blockNumber | string | Block number where transaction was mined |
blockHash | string | Block hash where transaction was mined |
timestamp | datetime | Blockchain confirmation timestamp (ISO 8601) |
rawTransaction | string | Signed raw transaction hex data |
metadata | object | Additional transaction metadata (see Metadata Fields) |
auditLogs | array | Complete timeline of all transaction events |
Use Cases
- Find transactions when you only have part of a hash
- Discover all transactions involving a specific address
- Locate transactions by partial workflow ID from logs
- Build search bars in transaction dashboards
Required Permission
transactions:read