v1

latestOpenAPI 3.1.02026-07-26170262.6 KB
Job Search

Search Company Jobs

List job postings at a single company from its LinkedIn company URL, with optional job-level filters.

post/v2/jobs/company

Request body

company_linkedin_urlstring required

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

max_resultsnumber

Maximum number of results to return

cursorstring nullable

Cursor to paginate through the results

Example request

{
  "company_linkedin_url": "https://www.linkedin.com/company/openai",
  "job": {
    "title": {
      "include": [
        "Software Engineer"
      ]
    },
    "seniority": {
      "include": [
        "2-5",
        "5-10"
      ]
    },
    "employment_type": {
      "include": [
        "FULL_TIME"
      ]
    },
    "date_posted": {
      "last_days": 30
    }
  },
  "max_results": 2
}

Response

Response for status 200

total_resultsnumber
results_lengthnumber
max_resultsnumber
cursorstring nullable

Example response

{
  "total_results": 12,
  "results": [
    {
      "date_posted": "2026-07-21 22:59:39+02",
      "title": "Software Engineer, Product Engineering (Internal Apps)",
      "url": "https://www.linkedin.com/jobs/view/software-engineer-product-engineering-internal-apps-at-openai-1234567890",
      "company_name": "OpenAI",
      "company_linkedin_url": "https://www.linkedin.com/company/openai",
      "ai_summary": "Own the full product lifecycle for internal applications, from initial discovery and design to implementation and production support.Build scalable internal tools, user experiences, and durable workflows to support Finance and Supply Chain operations.",
      "location": {
        "city": "San Francisco",
        "country_code": "US"
      }
    },
    {
      "date_posted": "2026-07-15 23:00:12+02",
      "title": "Full Stack Software Engineer, Codex",
      "url": "https://www.linkedin.com/jobs/view/full-stack-software-engineer-codex-at-openai-1234567891",
      "company_name": "OpenAI",
      "company_linkedin_url": "https://www.linkedin.com/company/openai",
      "ai_summary": "You will build end-to-end product experiences that span frontend applications, backend services, and developer tooling. The role involves designing AI-powered workflows and improving systems and workflows based on user feedback.",
      "location": {
        "city": "Seattle",
        "country_code": "US"
      }
    }
  ],
  "results_length": 2,
  "max_results": 2,
  "cursor": "eyJzIjpbMTcwMDAwMDAwMDAwMDAwMSwxMjM0NTY3ODkxXSwibyI6Mn0.ZXhhbXBsZS1jdXJzb3Itc2lnbmF0dXJlLW5vdC1yZWFs"
}