Intro Requests
List Intro Requests
The tracked asks on your paths
GET
/
intro-requests
curl "https://api.clustr-ai.com/api/public/intro-requests?prospectLinkedInId=jane-smith" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"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"
}
]
}
}
Filter by the connector, the prospect, or both. See Intro
Requests for what each status means.
Query Parameters
string
The connector’s LinkedIn id.
string
The prospect’s LinkedIn id.
curl "https://api.clustr-ai.com/api/public/intro-requests?prospectLinkedInId=jane-smith" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"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"
}
]
}
}
⌘I
curl "https://api.clustr-ai.com/api/public/intro-requests?prospectLinkedInId=jane-smith" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"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"
}
]
}
}