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

# List Intro Requests

> The tracked asks on your paths

Filter by the connector, the prospect, or both. See [Intro
Requests](/intro-requests) for what each status means.

## Query Parameters

<ParamField query="clientLinkedInId" type="string">
  The connector's LinkedIn id.
</ParamField>

<ParamField query="prospectLinkedInId" type="string">
  The prospect's LinkedIn id.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/intro-requests?prospectLinkedInId=jane-smith" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "introRequests": [
        {
          "id": "d1e2f3a4-...",
          "clientLinkedInId": "john-doe",
          "prospectLinkedInId": "jane-smith",
          "status": "sent",
          "message": "Hey John, would you mind introducing me to Jane at Acme?",
          "requestedBy": "alice@yourco.com",
          "createdAt": "2026-09-01T10:00:00Z",
          "updatedAt": "2026-09-02T08:00:00Z"
        }
      ]
    }
  }
  ```
</ResponseExample>
