Skip to main content
GET
Fetch Connections
Returns a paginated list of accepted connections for the authenticated user. Each entry includes the connected user’s public profile. Unlike the user-scoped endpoint, this route always returns data for the current authenticated user.

Query Parameters

page
number
Page number for pagination. Defaults to 1.
limit
number
Number of results per page. Defaults to 20. Max 100.
query
string
Optional search term. Filters the list to connections whose connected user’s username or name contains this text (case-insensitive). When omitted, no filtering is applied.
searchFields
string
Restricts which field query matches against — username or name. When omitted, query matches either field.

Response

On success, returns HTTP 200 with a paginated response:
data
array
Array of connection entries.
pagination
object
Pagination metadata.

See Also