curl --request POST \
--url https://api.example.com/v2/recruiter \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"job_id": "<string>",
"count": 123,
"offset": 123,
"fetch_details": true
}
}
'{
"success": true,
"data": {
"posts": [
{
"linkedin_job_id": "4178681638",
"title": "Growth Hacker",
"company_name": "Acme Corp",
"location": "France",
"job_state": "CLOSED",
"employment_status": "Full-time",
"workplace_type": "",
"created_at": 1741369464000,
"listed_at": 1761591723000,
"closed_at": 1762167565000,
"num_views": 962,
"num_applies": 100,
"job_url": "https://www.linkedin.com/jobs/view/4178681638/",
"contact_email": "[email protected]",
"industry": ["Software Development"],
"budget": {
"total_charge": "277.20",
"currency": "EUR",
"buffered_total_charge": "417.00",
"daily_budget": "88.0"
}
}
],
"total_results": 1,
"total_available_results": 1,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": null,
"has_more": false,
"results_per_page": 25
}
},
"metadata": {
"action": "get_posts",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Retrieve job postings from your recruiter account.
curl --request POST \
--url https://api.example.com/v2/recruiter \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"job_id": "<string>",
"count": 123,
"offset": 123,
"fetch_details": true
}
}
'{
"success": true,
"data": {
"posts": [
{
"linkedin_job_id": "4178681638",
"title": "Growth Hacker",
"company_name": "Acme Corp",
"location": "France",
"job_state": "CLOSED",
"employment_status": "Full-time",
"workplace_type": "",
"created_at": 1741369464000,
"listed_at": 1761591723000,
"closed_at": 1762167565000,
"num_views": 962,
"num_applies": 100,
"job_url": "https://www.linkedin.com/jobs/view/4178681638/",
"contact_email": "[email protected]",
"industry": ["Software Development"],
"budget": {
"total_charge": "277.20",
"currency": "EUR",
"buffered_total_charge": "417.00",
"daily_budget": "88.0"
}
}
],
"total_results": 1,
"total_available_results": 1,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": null,
"has_more": false,
"results_per_page": 25
}
},
"metadata": {
"action": "get_posts",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
job_id to fetch a specific job (with full details) or omit it to list all jobs (offset-based pagination).
"get_posts".Show params properties
count and offset are ignored and fetch_details is forced to true.10. Capped at 1000 per call.0. Use pagination.next_offset from a previous response to fetch the next page.false for a faster lightweight listing.Show data properties
Show post properties
"LISTED", "CLOSED", "DRAFT", etc.fetch_details: true).fetch_details: true)."Full-time", "Part-time", "Contract", "Internship"."Remote", "On-site", "Hybrid".total_charge, currency, buffered_total_charge, daily_budget.Show pagination properties
total_results).offset in the next request. null when exhausted.true if more posts are available beyond this batch.{
"success": true,
"data": {
"posts": [
{
"linkedin_job_id": "4178681638",
"title": "Growth Hacker",
"company_name": "Acme Corp",
"location": "France",
"job_state": "CLOSED",
"employment_status": "Full-time",
"workplace_type": "",
"created_at": 1741369464000,
"listed_at": 1761591723000,
"closed_at": 1762167565000,
"num_views": 962,
"num_applies": 100,
"job_url": "https://www.linkedin.com/jobs/view/4178681638/",
"contact_email": "[email protected]",
"industry": ["Software Development"],
"budget": {
"total_charge": "277.20",
"currency": "EUR",
"buffered_total_charge": "417.00",
"daily_budget": "88.0"
}
}
],
"total_results": 1,
"total_available_results": 1,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": null,
"has_more": false,
"results_per_page": 25
}
},
"metadata": {
"action": "get_posts",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Was this page helpful?