List all job postings
GEThttps://api.postpress.ai/v1/linkedin/jobs
Retrieve the job offers you have posted on LinkedIn whether they are open, closed or still drafts.
Authorization
X-API-KEYstringrequired
API key from your postpress dashboard. Sent as a request header.
Query parameters
account_idstringrequired
The id of the account to trigger the request from.
categorystringoptional
State of the requested job postings. Defaults to `active`.
limitintegeroptional
1 to 250. Defaults to 100 in examples.
cursorstringoptional
Pagination cursor returned by a previous call.
Response 200 OK
objectstringLinkedinJobPostingListrequireditemsarray of objectsrequireditems object
objectstringLinkedinJobPostingrequiredidstringrequiredstatestringrequiredactivedraftreviewclosedpausedtitlestringrequireddescriptionstringcompanystringcompany_idstringlocationstringrequiredapplicants_counternumberrequiredviews_counternumbercostnumberrequiredPromotion spend so far for this posting.
created_atnumberUnix timestamp (ms).
published_atnumberUnix timestamp (ms).
closed_atnumberUnix timestamp (ms).
apply_urlstringsalarystringworkplacestringe.g. `on_site`, `hybrid`, `remote`.
senioritystringskillsarray of stringsfunctionsarray of stringsindustriesarray of stringsscreening_questionsarray of objectsscreening_questions object
questionstringrequiredfavorableAnswersarray of stringsrequiredhiring_teamarray of objectshiring_team object
namestringrequiredprovider_idstringrequiredpublic_identifierstringrequiredprofile_urlstringrequiredcan_send_free_inmailbooleanrequiredcursorstringrequiredPass back as `cursor` to fetch the next page.
pagingobjectrequiredpaging object
page_countnumberrequiredtotal_countnumberrequiredExample request
curl --request GET \
--url 'https://api.postpress.ai/api/v1/linkedin/jobs?account_id=acc_linkedin_01HXYZ4QK3WJ8FN3M6QH7TZ8GR&category=active&limit=100' \
--header 'X-API-KEY: pp_live_...' \
--header 'accept: application/json'Example response
{
"object": "LinkedinJobPostingList",
"items": [
{
"object": "LinkedinJobPosting",
"id": "3984512098",
"state": "active",
"title": "Senior Frontend Engineer",
"description": "We're hiring a Senior Frontend Engineer to ...",
"company": "Acme Corp",
"company_id": "9374000",
"location": "San Francisco, California, United States",
"applicants_counter": 47,
"views_counter": 1284,
"cost": 412.5,
"created_at": 1746040000000,
"published_at": 1746126400000,
"apply_url": "https://www.linkedin.com/jobs/view/3984512098",
"salary": "$150,000 - $200,000",
"workplace": "hybrid",
"seniority": "Mid-Senior level",
"skills": ["React", "TypeScript", "Node.js"],
"functions": ["Engineering"],
"industries": ["Software Development"],
"screening_questions": [
{
"question": "How many years of React experience do you have?",
"favorableAnswers": ["3", "4", "5+"]
}
],
"hiring_team": [
{
"name": "Jordan Walke",
"provider_id": "ACoAAA...",
"public_identifier": "jordan-walke",
"profile_url": "https://www.linkedin.com/in/jordan-walke",
"can_send_free_inmail": true
}
]
}
],
"cursor": "eyJzdGFydCI6MTAwfQ==",
"paging": { "page_count": 100, "total_count": 423 }
}Errors
Every error response follows the same envelope:
titlestringrequired
Short error title.
detailstringoptional
Human-readable explanation.
instancestringoptional
Request identifier for support.
typestringrequired
Error type identifier.
statusnumberrequired
HTTP status code.
401 Unauthorized13 types
Credentials are missing, expired, or otherwise invalid.
errors/missing_credentials- Some credentials are necessary to perform the request.errors/multiple_sessions- LinkedIn limits multiple sessions on certain Recruiter accounts. Use the cookie connection method.errors/wrong_account- The provided credentials do not match the correct account.errors/invalid_credentials- The provided credentials are invalid.errors/invalid_proxy_credentials- The provided proxy credentials are invalid.errors/invalid_checkpoint_solution- The checkpoint resolution did not pass successfully. Retry.errors/checkpoint_error- The checkpoint does not appear to be resolvable.errors/expired_credentials- Credentials have expired. Reconnect the account.errors/expired_link- This link has expired. Generate a new one.errors/insufficient_privileges- This resource is out of your API-key scopes.errors/disconnected_account- The account is disconnected from the provider service.errors/disconnected_feature- The service you're trying to reach is disconnected.errors/invalid_credentials_but_valid_account_imap- IMAP/SMTP credentials are invalid but the account is otherwise valid.
403 Forbidden9 types
Authenticated but the account is restricted or the action is not allowed.
errors/insufficient_permissions- Valid authentication but insufficient permissions to perform the request.errors/account_restricted- The account has been restricted by the provider.errors/account_mismatch- This action cannot be done with your account.errors/unknown_authentication_context- An additional step seems necessary to complete login.errors/session_mismatch- Token user id does not match client session id.errors/feature_not_subscribed- The requested feature has not been subscribed or authenticated properly.errors/subscription_required- A subscription is required to use this feature.errors/resource_access_restricted- You don't have access to this resource.errors/action_required- An additional step is required.
404 Not Found2 types
The targeted account does not exist.
errors/resource_not_found- The requested resource was not found.errors/invalid_resource_identifier- The provided identifier is not valid for this resource.
422 Unprocessable Entity4 types
The request is well-formed but cannot be fulfilled as-is.
errors/invalid_account- The provided account is not designed for this feature.errors/unprocessable_entity- The request cannot be processed in its current form.errors/account_configuration_error- The account configuration prevents this request.errors/insufficient_job_slot- The account does not have an available job slot to perform this action.
500 Internal Server Error3 types
Something went wrong on our side or with the upstream provider.
errors/unexpected_error- Something went wrong.errors/provider_error- The provider is experiencing operational problems. Retry later.errors/authentication_intent_error- The current authentication intent was killed after failure.
503 Service Unavailable5 types
postpress is temporarily unable to handle the request.
errors/no_client_session- No client session is currently running.errors/no_channel- No channel to client session.errors/no_handler- Handler missing for that request.errors/network_down- Network is down on the server side. Retry shortly.errors/service_unavailable- Service temporarily unavailable. Retry later.
504 Gateway Timeout1 types
The upstream provider did not respond in time.
errors/request_timeout- Request timed out. Retry, and contact support if it persists.
Updated May 2026