Skip to main content
POST
Search Company Jobs
Agents & LLMs: a Markdown version of this page is available by appending .md to the URL, and the full documentation index is at llms.txt.
Cost: 1 credit per job returned on Trial Plan
Free on the Unlimited plan
List live job postings at a single company. Pass the target’s company_linkedin_url to scope results to that company, then optionally narrow with job-level filters (title, description, field, seniority, employment type, work arrangement, location, date posted).
Pagination is cursor-based. Pass the cursor returned by each response back into the next request. cursor: null means you’re on the first page; a null cursor in the response means you’ve reached the end. A single query returns up to 5,000 jobs, paginating through a maximum of 50 results per request.
Filter logic: all filters combine with AND. Multiple values within a single include list combine with OR. Use exclude to filter matches out.

Authorizations

x-api-key
string
header
required

Your Blitz API Key. Get one from https://app.blitz-api.ai

Body

company_linkedin_url
string
required

LinkedIn company URL. Results are scoped to this single company.

Minimum string length: 1
Example:

"https://www.linkedin.com/company/openai"

job
object

Job-level search criteria

max_results
number
default:10

Maximum number of results to return

Required range: 1 <= x <= 50
Example:

2

cursor
string | null

Cursor to paginate through the results

Example:

null

Response

Response for status 200

total_results
number
Example:

100

results
object[]
results_length
number
Example:

3

max_results
number
Example:

10

cursor
string | null