v1

latestOpenAPI 3.0.02026-07-267331140.7 KB
Safe Management

List Delayed Transactions

Returns an array of delayed transactions associated with the authenticated user, excluding failed transactions.

get/api/v1/delay-relay

Response

A list of delayed transactions for the authenticated user.

idstring

Unique identifier for the delayed transaction.

safeAddressstring

The Safe contract address associated with the transaction.

transactionDatastring

Data payload of the transaction.

enqueueTaskIdstring

Identifier of the task that enqueued this transaction.

dispatchTaskIdstring nullable

Identifier of the task responsible for dispatching this transaction.

readyAtstring date-time nullable

Timestamp indicating when the transaction is ready for processing.

operationType'CALL' | 'DELEGATECALL'

Type of operation being performed.

userIdstring

Identifier of the user associated with the transaction.

status'QUEUING' | 'WAITING' | 'EXECUTING' | 'EXECUTED' | 'FAILED'

Current status of the transaction.

createdAtstring date-time

Timestamp of when the transaction was created.

Example response

[
  {
    "id": "clp3j1f9a0000a1cdh6ezx2qv",
    "safeAddress": "0x1234567890abcdef1234567890abcdef12345678",
    "transactionData": "0xabcdef",
    "enqueueTaskId": "task_abc123",
    "dispatchTaskId": "task_def456",
    "readyAt": "2025-02-07T12:34:56Z",
    "operationType": "CALL",
    "userId": "user_123",
    "status": "QUEUING",
    "createdAt": "2025-02-07T12:34:56Z"
  }
]