Go back
Jungler

Jungler

v1 · 8 endpoints

Jungler (8)

API Explorer

— credits
ColdIQ
APIs→Jungler
Ctrl + K
Switch provider
Ctrl + P
Switch endpoint
POSThttps://api.coldiq.com/v1/jungler/workbooks35 cr

Start an extraction task that collects comments and/or reactions from a LinkedIn post. Returns a `task_id` to poll for c…

Authentication

No API key — create one in the dashboard

Body

LinkedIn post URL to extract interactions from

Interaction types to extract: 'comment', 'reaction', or both

import requests

url = "https://api.coldiq.com/v1/jungler/workbooks"

headers = {
    "Authorization": "Bearer ",
    "Content-Type": "application/json"
}

response = requests.post(url, headers=headers)
print(response.json())