Skip to main content
GET
/
:projectId
/
api
/
v7
/
connections
Fetch Connections
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/connections
{
  "data": [
    {
      "id": "<string>",
      "connectedUser": {},
      "connectedAt": "<string>"
    }
  ],
  "pagination": {
    "page": 123,
    "pageSize": 123,
    "totalItems": 123,
    "totalPages": 123,
    "hasMore": true
  }
}
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.

Response

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

See Also