Skip to main content

Get wallets by user id

GET 

/v1/users/wallets

Get wallets by user id

This endpoint retrieves wallets associated with a specific user ID, including both owned wallets and those shared with the user. It supports pagination and filtering by creation dates. The response includes details such as wallet ID, owner ID, name, type, backup key, seed, and creation timestamp.

Request

Query Parameters

    page int32

    Page

    page_size int32

    Page size

    end_date date-time

    End date

    start_date date-time

    Start date

Responses

Wallets found

Schema
  • Array [
  • apiKeyId uuidnullable
    backupKey stringrequired
    createdAt date-timerequired
    id uuidrequired
    name stringrequired
    ownerId uuidrequired
    seed stringrequired
    walletType stringrequired
  • ]
Loading...