v1

latestOpenAPI 3.0.02026-07-17103042.4 KB
ScheduledTransactions
Accounts

List scheduled transactions for an account

Returns a paginated list of scheduled transactions associated with the given account address, ordered descending by scheduled time (newest first). Results can be filtered by status, priority, time range, and transaction handler properties.

get/experimental/v1/accounts/{address}/scheduled

Path parameters

addressstring hexadecimal required

The 8-byte address of an account.

The account address (hex-encoded without 0x prefix).

Query parameters

cursorstring base64

Opaque pagination cursor from a previous response's next_cursor field.

Opaque pagination cursor from a previous response's next_cursor field.

limitinteger

The maximum number of results to return.

statusesScheduledTransactionStatus[]

A comma-separated list of scheduled transaction statuses to filter by.

priority'low' | 'medium' | 'high'

The execution priority of a scheduled transaction.

Filter by scheduled transaction priority.

start_timestring date-time

Filter to include only scheduled transactions with a scheduled time at or after this value (inclusive, RFC 3339).

end_timestring date-time

Filter to include only scheduled transactions with a scheduled time at or before this value (inclusive, RFC 3339).

handler_ownerstring hexadecimal

The 8-byte address of an account.

Filter by the address of the account that owns the transaction handler.

handler_type_identifierstring

Filter by the Cadence type identifier of the transaction handler (e.g. A.1654653399040a61.MyScheduler.Handler).

handler_uuidstring uint64

Filter by the UUID of the transaction handler resource.

expandstring[]

A comma-separated list indicating which properties of the content to expand.

selectstring[]

A comma-separated list indicating which properties of the content to return.

Response

A page of scheduled transactions.

next_cursorstring base64

Opaque pagination cursor from a previous response's next_cursor field.