Skip to main content

List all customers

GET 

/customers

Retrieves a paginated list of customers. This endpoint supports:

  • Filtering for direct children only
  • Including related entities (wallets and portfolios)
  • Pagination and sorting

Request

Query Parameters

    include string[]

    Possible values: [portfolios, wallets]

    Fields to include in the response

    sortBy string

    Possible values: [firstName, lastName, email, id]

    Field to sort by

    startAfterId string
    limit number

Responses

Successfully retrieved the list of customers with pagination information.

Schema

    traceId string
    message string

    data

    object[]

  • Array [

  • id stringrequired
    name stringrequired
    type stringrequired

    portfolios

    object[]

  • Array [

  • id stringrequired

    The ID of the portfolio

    default booleanrequired

    Whether this portfolio is the default portfolio

    wallets string[]required

    The IDs of the wallets in the portfolio

  • ]

  • ]

  • pagination

    object

    totalResults numberrequired
    hasMoreResults booleanrequired
Loading...