Skip to main content

List all customers

GET 

/v1/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

    limit number

    Possible values: >= 1 and <= 200

    Default value: 20

    The number of items to return

    offset number

    Default value: 0

    The number of items to skip

    include string[]

    Possible values: [portfolios, wallets]

    Fields to include in the response

    sortBy string

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

    Field to sort by

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

  • ]

  • onboardingId string

    The ID of the most recent onboarding for this customer

  • ]

  • pagination

    object

    totalResults numberrequired
    hasMoreResults booleanrequired
Loading...