> ## Documentation Index
> Fetch the complete documentation index at: https://docs.replyke.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Connections

> Get a paginated list of a user's accepted connections

Returns a paginated list of accepted connections for the specified user. Each entry includes the connected user's public profile. This endpoint is public — no authentication required.

## Path Parameters

<ParamField path="userId" type="string" required>
  The Replyke user ID (UUID) of the user whose connections to retrieve.
</ParamField>

## Query Parameters

<ParamField query="page" type="number">
  Page number for pagination. Defaults to `1`.
</ParamField>

<ParamField query="limit" type="number">
  Number of results per page. Defaults to `20`, maximum `100`.
</ParamField>

## Response

On success, returns HTTP `200` with a paginated response:

<ResponseField name="data" type="array">
  Array of connection entries.

  <Expandable title="item properties">
    <ResponseField name="id" type="string">
      Connection record ID.
    </ResponseField>

    <ResponseField name="connectedUser" type="object">
      Public profile of the connected user (the user who is not `:userId`). Sensitive fields are excluded.
    </ResponseField>

    <ResponseField name="connectedAt" type="string">
      ISO timestamp of when the connection was accepted.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="totalCount" type="number">
  Total number of accepted connections.
</ResponseField>

<ResponseField name="page" type="number">
  Current page number.
</ResponseField>

<ResponseField name="limit" type="number">
  Page size used for this response.
</ResponseField>

## See Also

* [`useFetchConnectionsByUserId` hook](/hooks/connections/use-fetch-connections-by-user-id)
* [Connection data model](/data-models/connection)
