Get traders for your organization
Returns all traders who have accounts with your organization.
Search examples:
?search=john- Find by partial username, displayName, or name?search=john@example.com- Find by partial email?search=550e8400-e29b-41d4-a716-446655440000- Find by exact userId
Lookup by your own reference:
?externalUserId=mffu-user-4471- Find the trader by the external ID you assigned (set viatraderExternalIdon POST /trading-accounts, or via PUT /traders/). Exact match, indexed — no email round-trip needed.
Metadata filter: Filter traders by any key:value in their metadata:
?metadata=customerTier:gold- Find gold tier customers?metadata=vip:true- Find VIP traders
Combined filters:
?search=john&metadata=customerTier:gold?search=john&startDate=2025-01-01&endDate=2025-01-31?metadata=source:referral&startDate=2025-01-01&limit=10
Authorizations
JWT Bearer token for user session auth. Format: "Bearer {token}". Used by User and Organization endpoints.
Query Parameters
Search by email, username, displayName, name (partial match) or userId (exact match)
Exact match on the external reference you set for the trader (via traderExternalId on account creation or PUT /traders/{traderId}). Deterministic lookup by your own user ID.
255Filter by metadata key:value (e.g., "vip:true", "source:referral")
Filter traders who joined on or after this date (ISO 8601 format)
Filter traders who joined on or before this date (ISO 8601 format)
Number of traders to return (max 100)
1 <= x <= 100Offset for pagination
x >= 0Cursor for pagination. Pass the nextCursor value from the previous response to get the next page. When using cursor, do not send offset — it will be ignored.
How it works: The cursor is an opaque string that points to the last item you received. The server uses it to efficiently fetch the next set of results without scanning previous pages.
Backwards compatible: If you don't send a cursor, offset/limit pagination works as before.
Related topics
Get trading accounts for your organizationGet trading rules for your organizationGet your organization profileGet purchases for your organizationGet team members for your organization