Skip to main content
GET
/
:projectId
/
connections
/
pending
/
received
Get Received Pending Requests
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/connections/pending/received
{
  "requests": [
    {
      "id": "<string>",
      "type": "<string>",
      "user": {
        "id": "<string>",
        "name": "<string>",
        "username": "<string>",
        "avatar": "<string>",
        "bio": "<string>",
        "reputation": 123
      },
      "message": "<string>",
      "createdAt": "<string>"
    }
  ],
  "pagination": {
    "currentPage": 123,
    "totalPages": 123,
    "totalCount": 123,
    "hasNextPage": true,
    "hasPreviousPage": true,
    "limit": 123
  }
}

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 connection requests that others have sent to the current user and are still pending.

Query Parameters

page
number
default:"1"
Page number
limit
number
default:"20"
Items per page (max: 100)

Response

requests
array
pagination
object

Error Responses

{
  "error": "Authentication required",
  "code": "auth/unauthorized"
}
{
  "error": "Internal server error",
  "code": "connection/server-error"
}

Notes

  • Requires authentication
  • Returns paginated list of pending connection requests received by the current user
  • Each request includes the sender’s details and their message
  • Shows when each request was received
  • Users can accept or decline these requests using the connection ID
  • Default pagination: 20 items per page, maximum 100 items per page
  • Rate limiting: 100 requests per 5 minutes