Retrieves all multi-account associations detected within a specific project. This endpoint returns a paginated list of users who have been identified as operating multiple accounts, helping you detect and prevent fraud, abuse, and policy violations.
Requires API key authentication:
This endpoint supports pagination parameters to navigate through large result sets:
first, after, last, before parametersThe response follows a cursor-based pagination pattern with the following structure:
edges (array): Contains the multi-account records
pageInfo (object): Pagination metadata
attributes (object): Additional metadata (typically empty)
To retrieve the next page of results, use the endCursor value:
userId appearing multiple times indicates multiple accounts from the same device/browsercreatedAt timestamp indicates when BotBye first detected the multi-account association(Optional): a cursor for pagination.
after (string): Pointer to the item after which the items are to be retrieved.before (string): Pointer to the item before which the items are to be retrieved.first (number): specifies the maximum number of results to return in a single response. By default - 20, max - 500.(Optional): is used to create conditions for data filtering. It can be used to create simple conditions (leaf nodes) as well as compound logical expressions (branch nodes).
predicate (string): The filtering condition (e.g., gte, lte, eq for a leaf or and, or for a branch). Possible values [[#Predicate]]opearands (string): A list of nested conditions (used only for branches, such as and, or).fieldPath (string): The field to which the filtering condition is applied (used only for a leaf. Each entity has its own fieldPath list).value (string): The value to compare against the field (used only for a leaf).