Skip to content

Commit 1c6bdfd

Browse files
docs: add Get Connection Request Remaining endpoint
Co-Authored-By: Adil <adil@lix-it.com>
1 parent aec4769 commit 1c6bdfd

1 file changed

Lines changed: 69 additions & 0 deletions

File tree

src/app/enrichment/page.mdx

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1125,6 +1125,75 @@ curl --request POST \
11251125
<Row>
11261126
<Col>
11271127

1128+
## Get Connection Request Remaining
1129+
1130+
This endpoint returns the number of LinkedIn connection requests an account can still send in the current calendar week and when the weekly limit will reset.
1131+
1132+
<Note variant="warning">
1133+
Weekly send limits apply to each LinkedIn account:
1134+
1135+
- **Sales Navigator accounts:** 100 connection requests per week
1136+
- **Standard LinkedIn accounts:** 50 connection requests per week
1137+
1138+
The limit resets at 00:00 UTC on Monday.
1139+
</Note>
1140+
1141+
### HTTP Request
1142+
1143+
`GET https://api.lix-it.com/v1/account/connections/remaining`
1144+
1145+
### Query Parameters
1146+
1147+
#### Required parameters
1148+
1149+
Parameter | Description
1150+
--------- | -----------
1151+
viewer_id | The LinkedIn ID of the account you would like to check
1152+
1153+
</Col>
1154+
<Col sticky>
1155+
1156+
<CodeGroup title="Get Connection Request Remaining" tag="GET" label="/v1/account/connections/remaining">
1157+
1158+
```python
1159+
import requests
1160+
1161+
url = "https://api.lix-it.com/v1/account/connections/remaining?viewer_id=ACoAACABCDEF1234567"
1162+
1163+
headers = {
1164+
'Authorization': lix_api_key
1165+
}
1166+
1167+
response = requests.request("GET", url, headers=headers)
1168+
1169+
print(response.json())
1170+
```
1171+
1172+
```bash {{ title: 'Shell' }}
1173+
curl "https://api.lix-it.com/v1/account/connections/remaining?viewer_id=ACoAACABCDEF1234567" \
1174+
-H "Authorization: lixApiKey"
1175+
```
1176+
1177+
```json {{ title: 'Response' }}
1178+
{
1179+
"viewerId": "ACoAACABCDEF1234567",
1180+
"weeklyLimit": 50,
1181+
"used": 12,
1182+
"remaining": 38,
1183+
"nextRefresh": "2026-08-24T00:00:00Z"
1184+
}
1185+
```
1186+
1187+
</CodeGroup>
1188+
1189+
</Col>
1190+
</Row>
1191+
1192+
---
1193+
1194+
<Row>
1195+
<Col>
1196+
11281197
## Organisation by Website
11291198

11301199
<Note variant="purple">

0 commit comments

Comments
 (0)