> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tryhuntr.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Find job postings for a company

> **Requires `x-api-key` header.**

Rate limit: 5 requests/second per API key.

Finds active job listings for a company domain. Checks public ATS feeds first, then job board search. Returns structured job data with titles, departments, locations, salaries, and direct application URLs.

**Price:** $0.012 when jobs are found, free when nothing is found.



## OpenAPI

````yaml /openapi.json post /company-jobs
openapi: 3.0.3
info:
  title: Huntr — The GTM Intelligence API
  description: >-
    Give AI agents company, people, contact, and web intelligence through one
    API. Search accounts, build targeted lists, enrich leads, find contacts, and
    uncover buying signals.


    **Authentication:** Authenticated endpoints require an `x-api-key` header
    with your Huntr API key. Get a key by signing up via `POST /keys/create`.
    Public endpoints (pricing, sign-up, health) work without a key.


    **Rate limit:** 5 requests/second per API key on authenticated endpoints.
  version: 2.0.0
servers:
  - url: https://api.tryhuntr.com
security: []
tags:
  - name: Research
    description: >-
      Research one company, person, team, or focused business question and
      return a sales-ready answer. Lite, standard, and deep tiers.
  - name: Companies
    description: >-
      Search companies and enrich firmographics. Per-result pricing on search;
      count endpoints are free.
  - name: People
    description: >-
      Search people and enrich contacts — work email, phone, and related lookup
      endpoints.
  - name: LinkedIn
    description: >-
      LinkedIn URL discovery, company and profile pages, posts, reactions, and
      comments.
  - name: X
    description: X profiles, posts, search results, and thread context.
  - name: Web
    description: >-
      Find and analyze pages on a domain, plus tech stack, domain contacts, and
      job postings.
  - name: Account
    description: >-
      Sign up, verify email, recover keys, check balance, view usage, add
      credits, and read the public pricing matrix.
  - name: System
    description: Health check.
paths:
  /company-jobs:
    post:
      tags:
        - Web
      summary: Find job postings for a company
      description: >-
        **Requires `x-api-key` header.**


        Rate limit: 5 requests/second per API key.


        Finds active job listings for a company domain. Checks public ATS feeds
        first, then job board search. Returns structured job data with titles,
        departments, locations, salaries, and direct application URLs.


        **Price:** $0.012 when jobs are found, free when nothing is found.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - domain
              properties:
                domain:
                  type: string
                  description: Company domain, e.g. `stripe.com`.
                country:
                  type: string
                  description: >-
                    Optional country code for job board discovery, e.g. `us`,
                    `uk`, `de`, `fr`. Defaults to `us`.
            example:
              domain: stripe.com
      responses:
        '200':
          description: Job postings lookup complete.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  request_id:
                    type: string
                  domain:
                    type: string
                    description: Normalized domain that was queried.
                  result:
                    type: object
                    properties:
                      jobs:
                        type: array
                        items:
                          type: object
                          properties:
                            title:
                              type: string
                              description: Job title.
                            department:
                              type: string
                              description: Department or team, if available.
                            location:
                              type: string
                              description: Job location.
                            url:
                              type: string
                              description: Direct link to the job posting.
                            salary:
                              type: string
                              description: Salary range, if available.
                        description: Array of job postings.
                      total:
                        type: number
                        description: Number of jobs found.
                      is_hiring:
                        type: boolean
                        description: Whether the company has active job postings.
                      source:
                        type: string
                        description: >-
                          Where the jobs were found: greenhouse, lever, ashby,
                          smartrecruiters, workable, recruitee, personio,
                          indeed, or not_found.
                  price:
                    type: number
                    description: $0.012 when jobs found, $0.00 when nothing found.
                  credits_remaining:
                    type: number
              examples:
                found:
                  summary: Jobs found
                  value:
                    success: true
                    request_id: req_1746123456_jp1x2y
                    domain: stripe.com
                    result:
                      jobs:
                        - title: Account Executive, AI Sales
                          department: Sales
                          location: San Francisco, CA
                          url: https://boards.greenhouse.io/stripe/jobs/5423044
                        - title: Software Engineer, Payments
                          department: Engineering
                          location: Remote
                          url: https://boards.greenhouse.io/stripe/jobs/7775622
                      total: 2
                      is_hiring: true
                      source: greenhouse
                    price: 0.012
                    credits_remaining: 4.988
                not_found:
                  summary: No jobs found
                  value:
                    success: true
                    request_id: req_1746123456_jp3x4y
                    domain: unknown.example
                    result:
                      jobs: []
                      total: 0
                      is_hiring: false
                      source: not_found
                    price: 0
                    credits_remaining: 5
        '400':
          description: Missing or invalid domain.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Insufficient credits.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Scrape failed. Credits are refunded automatically.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message.
      required:
        - error
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Your Huntr API key. Get one at tryhuntr.com. Pass as x-api-key header on
        all authenticated requests.

````