Skip to main content

Get transactions

GET 

/v1/transactions

Get transactions

This endpoint retrieves a paginated list of transactions based on various filters such as wallet ID, sorting criteria, and date range. It supports querying by transaction details, approvers, deniers, and creation date. Transactions can be sorted by creation date or transaction name in ascending or descending order. This endpoint is designed for financial applications needing detailed transaction history with customizable views.

Request

Query Parameters

    wallet_id string

    Wallet id

    sort_by string

    Sort by

    order_by string

    Order by

    page int32

    Page

    page_size int32

    Page size

    search string

    Search query

    end_date date-time

    End date

    start_date date-time

    Start date

Responses

Transactions found

Schema
  • Array [
  • action_type stringrequired
    approvers uuid[]nullable
    created_at date-timerequired
    deniers uuid[]nullable
    from_account_id uuidnullable
    from_user_id uuidnullable
    id uuidrequired
    network_id int32required
    status stringnullable
    to_account_id uuidnullable
    to_address stringrequired
    to_contact_id uuidnullable
    token_address stringnullable
    tx_data stringrequired
    type stringnullable
  • ]
Loading...