Skip to main content

Get transactions by user id

GET 

/v1/users/:target_user_id/transactions

Get transactions by user id

This endpoint retrieves transaction details for a specific user based on their ID. It supports filtering by wallet ID, sorting, pagination, and searching within a date range. Transactions include detailed information about the sender, receiver, tokens involved, and transaction metadata. Access control ensures that only authorized users or admins can view these transactions.

Request

Path Parameters

    target_user_id uuidrequired

    User id

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

    end_date date-time

    End date

    start_date date-time

    Start date

Responses

User transactions found

Schema
  • Array [
  • actionType stringrequired
    createdAt date-timerequired
    data stringnullable
    from stringrequired
    fromAccountId uuidrequired
    fromAccountName stringrequired
    fromTokenCoingeckoId stringnullable
    fromTokenDecimals int32nullable
    fromTokenFiatValue doublenullable
    fromTokenId uuidnullable
    fromTokenName stringnullable
    fromTokenSymbol stringnullable
    fromUserId uuidnullable
    fromUserName stringnullable
    gasLimit stringnullable
    gasPrice stringnullable
    id uuidrequired
    maxFeePerGas stringnullable
    maxPriorityFeePerGas stringnullable
    networkId int32required
    nonce stringnullable
    signedTxRlp stringnullable
    to stringrequired
    toAccountId uuidnullable
    toAccountName stringnullable
    toContactAddress stringnullable
    toContactAddressName stringnullable
    toContactId uuidnullable
    toContactName stringnullable
    tokenAddress stringnullable
    tokenId stringnullable
    value stringnullable
  • ]
Loading...