---
title: "List Delayed Transactions"
method: GET
path: "/api/v1/delay-relay"
tags: ["Safe Management"]
---

# List Delayed Transactions

`GET /api/v1/delay-relay`

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

## Response `200`

A list of delayed transactions for the authenticated user.

- DelayTransaction[]
  - `id` string — Unique identifier for the delayed transaction.
  - `safeAddress` string — The Safe contract address associated with the transaction.
  - `transactionData` string — Data payload of the transaction.
  - `enqueueTaskId` string — Identifier of the task that enqueued this transaction.
  - `dispatchTaskId` string, nullable — Identifier of the task responsible for dispatching this transaction.
  - `readyAt` string, date-time, nullable — Timestamp indicating when the transaction is ready for processing.
  - `operationType` 'CALL' | 'DELEGATECALL' — Type of operation being performed.
  - `userId` string — Identifier of the user associated with the transaction.
  - `status` 'QUEUING' | 'WAITING' | 'EXECUTING' | 'EXECUTED' | 'FAILED' — Current status of the transaction.
  - `createdAt` string, date-time — Timestamp of when the transaction was created.

## Other responses

- `401` — Unauthorized, missing or invalid token.
- `500` — Internal server error.

---

[API](https://skmtc.net/gnosispay/apis/gnosispay-api.md) · [All operations](https://skmtc.net/gnosispay/apis/gnosispay-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gnosispay/gnosispay-api/versions/e0a09962c187/schema)
