Skip to main content

Get transactions for account

GET 

/v1/accounts/:account_id/transactions

Get transactions for account

This endpoint retrieves transaction records associated with a specific account. It supports filtering by various parameters such as sorting, ordering, pagination, and searching within transaction details. Additionally, it allows filtering based on network IDs and date ranges. The response includes detailed transaction information including transaction ID, type, addresses involved, and timestamps.

Request

Path Parameters

    account_id uuidrequired

    Account id

Query Parameters

    sort_by string

    Sort by created_at or name

    order_by string

    Order by asc or desc

    page int32

    Page number

    page_size int32

    Page size

    search string

    Search by tx_data, approvers, deniers, created_at

    network_ids string

    Network ids

    end_date date-time

    End date

    start_date date-time

    Start date

Responses

Ok

Schema
  • Array [
  • action_type stringrequired
    approvers uuid[]nullable
    created_at date-timerequired
    deniers uuid[]nullable
    from_account_id uuidnullable
    from_address stringrequired
    from_user_id uuidnullable
    gas_limit stringrequired
    gas_price stringrequired
    hash stringrequired
    id uuidrequired
    network_id int32required
    nonce stringrequired
    to_address stringrequired
    tx_data stringrequired
    type stringrequired
    user_nickname stringrequired
    value stringrequired
  • ]
Loading...