GET
/
api
/
v1
/
delay-relay
Retrieve the list of delayed transactions for the authenticated user
const url = 'https://api.gnosispay.com/api/v1/delay-relay';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}, body: undefined};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
[
  {
    "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"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

A list of delayed transactions for the current user.

The response is of type object[].