jobdata

Added company open/total job counts + filters

jobdataapi.com v3.34 / API version 1.5.5

1 min read · June 8, 2024

The /api/companies/ endpoint now has two new data attributes and filter parameters that allow for determining the number of currently open and total jobs that belong to a particular company object.

Here's an example query to find all companies that currently have more than 50 open positions (remember: we're tracking if a job is still open or not on a daily basis): https://jobdataapi.com/api/companies/?min_jobs_open=50

An example result set would look like this:

{"count":3289,
 "next":"https://jobdataapi.com/api/companies/?min_jobs_open=50&page=2",
 "previous":null,
 "results":[
     {"id":1899,
      "name":
      "10x Genomics",
      "logo":"https://jobdataapi.com/media/company/logo/22/02/10xGenomics.jpg",
      "website_url":"https://www.10xgenomics.com/",
      "linkedin_url":"https://www.linkedin.com/company/10xgenomics/",
      "twitter_handle":"10xGenomics",
      "github_url":null,
      "info_description":"Cells are the basic unit of life. They power everything we do, and unlocking their secrets is the key to advancing our knowledge of every facet of biology, from development to disease. Our single cell, spatial, and in situ tools enable researchers to answer pressing questions about cells and their functional contributions to oncology, immunology, neuroscience, and much more—as evidenced by more than 5,500 publications citing our technology. We are dedicated to building the best products, delivering the best customer experience, and creating the best team to fuel new scientific discovery, no matter how challenging. And we won’t stop until all of the cells’ secrets are revealed.",
      "info_hq":"Pleasanton, California",
      "info_size":1001,
      "info_founded":2012,
      "info_specialties":null,
      "info_industry":{
          "id":46,
          "name":"Biotechnology Research"
      },
      "info_type":{
          "id":4,
          "name":"Public Company"
      },
      "num_jobs_open":74,
      "num_jobs_total":493
     },
     ...

The new data attributes on each company are num_jobs_open and num_jobs_total representing the number of open and total jobs respectively.

Keep in mind that all this data is in constant change and that these job count numbers are being updated in the database every two hours.

Related Docs

Removal of clearance_required field from job result structure
Maximum value for "page_size" parameter increased to 5000
Added plain-text field for cleaned job description
Full job data downloads now available!
Added company website/domain filter to jobs endpoint
jobdataapi.com now has Changelog section 🎉