curl --request POST \
--url https://api.example.com/v2/network \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"count": 123,
"offset": 123
}
}
'{
"success": true,
"data": {
"connections": [
{
"name": "Jane Doe",
"job_title": "Founder @ Acme Corp — AI recruiting platform",
"profile_url": "https://www.linkedin.com/in/jane-doe-42/",
"profile_picture": "https://media.licdn.com/dms/image/v2/.../profile.jpg"
}
],
"total_results": 1,
"total_available_results": 1201,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "list_connections",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Retrieve a paginated list of connections.
curl --request POST \
--url https://api.example.com/v2/network \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"count": 123,
"offset": 123
}
}
'{
"success": true,
"data": {
"connections": [
{
"name": "Jane Doe",
"job_title": "Founder @ Acme Corp — AI recruiting platform",
"profile_url": "https://www.linkedin.com/in/jane-doe-42/",
"profile_picture": "https://media.licdn.com/dms/image/v2/.../profile.jpg"
}
],
"total_results": 1,
"total_available_results": 1201,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "list_connections",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
count for the page size and offset to skip ahead.
count: 250 triggers ~3 upstream calls automatically."list_connections".Show params properties
Show data properties
Show pagination properties
total_results).offset in the next request to fetch the next page. null when there are no more results.true if more connections are available beyond this batch.{
"success": true,
"data": {
"connections": [
{
"name": "Jane Doe",
"job_title": "Founder @ Acme Corp — AI recruiting platform",
"profile_url": "https://www.linkedin.com/in/jane-doe-42/",
"profile_picture": "https://media.licdn.com/dms/image/v2/.../profile.jpg"
}
],
"total_results": 1,
"total_available_results": 1201,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "list_connections",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Was this page helpful?