Legacy
Company Jobs (Legacy)
Deprecated — use POST /api/v1/company-jobs/search instead
POST
Search for job postings from specific companies. Filter results by location, department, seniority level, keywords, and more.Documentation Index
Fetch the complete documentation index at: https://docs.sentrion.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
This endpoint requires a Bearer token. Enter your API key in the authorization field above — theBearer prefix is added automatically.
Request Body
You must provide at least one ofcompany_name, company_domain, or company_linkedin_url to identify the target company.
Company Identification
The name of the company to search for.
The company’s website domain (e.g.,
apple.com).The company’s LinkedIn profile URL.
If
true, performs a broader, less exact search for the company name.Location Filters
A list of location objects to filter jobs by.
Filter by remote status.
true returns only remote jobs, false returns only non-remote jobs, null includes both.Date Filters
Start date for the job search in
YYYY-MM-DD format.End date for the job search in
YYYY-MM-DD format.Job Filters
Filter by department. Example:
["Engineering", "Product Management"]Filter by job type. Possible values:
Full Time, Part Time, Contract, Internship, Volunteer.Filter by seniority level. Possible values:
Entry Level, Mid Level, Executive Level.Keyword Filters
Keywords to search for in job titles and descriptions.
Keywords to exclude from job titles and descriptions.
Job Board Filters
Filter by job boards.
true includes only job board results, false excludes them, null includes both.List of job board names to include in search results.
List of job board names to exclude from search results.
Other Options
If
false, includes duplicate job postings.If
false, excludes jobs from recruitment agencies.The number of results to return. Min:
1, Max: 500.The cursor for fetching the next page of results. See Pagination.
Response
true for successful requests, false for failed requests.The response data wrapper.
null if success is false.Error details.
null if success is true.Pagination
This API uses cursor-based pagination to navigate through large result sets.Check for more results
If the response contains a non-null
next_cursor string, more results are available.Fetch the next page
Use the
next_cursor value from the previous response in your next request to fetch the subsequent page.