Documentation

Job Search Endpoint

Cost2 credits / successful request

List jobs posted by a company.

GET
/api/v2/company/job

Authorization

BearerAuth client
AuthorizationBearer <token>

In: header

Scope: client

Query Parameters

job_type?string

The nature of the job. It accepts the following 7 case-insensitive values only:

  • full-time
  • part-time
  • contract
  • internship
  • temporary
  • volunteer
  • anything (default)
experience_level?string

The experience level needed for the job. It accepts the following 6 case-insensitive values only:

  • internship
  • entry_level
  • associate
  • mid_senior_level
  • director
  • anything (default)
when?string

The time when the job is posted, It accepts the following case-insensitive values only:

  • yesterday
  • past-week
  • past-month
  • anytime (default)
flexibility?string

The flexibility of the job. It accepts the following 3 case insensitive values only:

  • remote
  • on-site
  • hybrid
  • anything (default)
geo_id?string

The geo_id of the location to search for. For example, 92000000 is the geo_id of world wide.

keyword?string

The keyword to search for.

search_id?string

The search_id of the company. You can get the search_id of a company via Company Profile API.

Response Body

application/json

curl -X GET "https://enrichlayer.com/api/v2/company/job?job_type=full-time&experience_level=mid_senior_level&when=past-month&flexibility=remote&geo_id=92000000&keyword=engineer&search_id=1035"
{
  "job": [
    {
      "company": "Microsoft",
      "company_url": "https://www.linkedin.com/company/microsoft",
      "job_title": "Product Management: Intern Opportunities for University Students",
      "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203330682",
      "list_date": "2022-10-09",
      "location": "New York, NY"
    },
    {
      "company": "Microsoft",
      "company_url": "https://www.linkedin.com/company/microsoft",
      "job_title": "Content Strategist",
      "job_url": "https://www.linkedin.com/jobs/view/content-strategist-at-microsoft-3257692764",
      "list_date": "2022-10-21",
      "location": "United States"
    }
  ],
  "next_page_no": 1,
  "next_page_api_url": "http://enrichlayer.com/api/pc/company/job?pagination=eyJwYWdlIjogMX0&search_id=1035",
  "previous_page_no": null,
  "previous_page_api_url": null
}
Empty
Empty
Empty
Empty
Empty
Empty
Empty