# Get current user/business transactions Consolidated endpoint for user/business transactions. Use role parameter to filter: SENDER (sent), RECIPIENT (received), or omit for all transactions. Supports full pagination and filtering. Endpoint: GET /transactions/me Version: 2.0.12 Security: authJWT ## Query parameters: - `search` (string) Wildcard search for ID, address or transaction hash - `participantAddress` (string) Filter by specific wallet address (must belong to authentication context for non-admins) - `tokenAddress` (string) - `page` (number) Page number (1-based) - `limit` (number) Items per page - `sortBy` (string) Sort field - `sortOrder` (string) Sort order Enum: "ASC", "DESC" - `dateFrom` (string) Filter items created after this date (ISO 8601) - `dateTo` (string) Filter items created before this date (ISO 8601) - `type` (array) Enum: "MINT", "TRANSFER", "BURN" - `tokenType` (array) - `status` (array) Enum: "created", "processing", "pending_signature", "broadcasted", "succeeded", "failed", "cancelled", "expired" - `role` (array) Filter by transaction role: SENDER, RECIPIENT, or omit for all Enum: "SENDER", "RECIPIENT" ## Response 200 fields