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

# Check job status

> Coarse status — maps internal lookup/harvest/verdict state to 4 client-facing states.
Scoped to the caller: you only see your own jobs. On `done`, `result_url` points at the DMs.



## OpenAPI

````yaml https://api.bossradar.com/openapi.json get /jobs/{job_id}
openapi: 3.1.0
info:
  title: bossradar API
  description: >

    Give bossradar a **LinkedIn company** — get back its **decision makers**.


    You submit a company (URL, slug, numeric id, or name); we resolve it,
    harvest the roster,

    classify who actually decides, enrich the shortlist, and return a ranked
    verdict. Jobs run

    **asynchronously** (minutes) — you either poll `GET /jobs/{id}` or receive a
    **webhook**.


    ### Authentication

    Every request needs an API key in the `X-API-Key` header. Generate yours in
    the

    [dashboard](https://app.bossradar.com/dashboard) (`brk_live_…`). `POST
    /jobs` spends money, so it

    is never anonymous.


    ### Typical flow

    1. `POST /jobs` `{ "input": "linkedin.com/company/<slug>" }` → `202 { job_id
    }`

    2. Poll `GET /jobs/{job_id}` until `status: "done"` **— or** pass
    `callback_url` and get a webhook.

    3. `GET /company/{company_id}/dm` → the decision makers.


    ### Webhook (optional)

    Pass `callback_url` on `POST /jobs`; when the job is done we `POST` that URL
    with:

    `{ job_id, company_id, status: "done", count, decision_makers[] }`.
  contact:
    name: bossradar
    url: https://app.bossradar.com/
    email: admin@bossradar.com
  version: 1.0.0
servers:
  - url: https://api.bossradar.com
    description: Production
security: []
tags:
  - name: jobs
    description: Submit and track decision-maker jobs.
paths:
  /jobs/{job_id}:
    get:
      tags:
        - jobs
      summary: Check job status
      description: >-
        Coarse status — maps internal lookup/harvest/verdict state to 4
        client-facing states.

        Scoped to the caller: you only see your own jobs. On `done`,
        `result_url` points at the DMs.
      operationId: get_job_jobs__job_id__get
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            title: Job Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobStatus'
        '401':
          description: Missing or invalid API key.
        '404':
          description: Job not found (or not yours).
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    JobStatus:
      properties:
        job_id:
          type: string
          title: Job Id
        status:
          type: string
          title: Status
          description: '`processing` | `done` | `not_found` | `failed`.'
          examples:
            - done
        company_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Company Id
          examples:
            - 3384253
        result_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Result Url
          examples:
            - /company/3384253/dm
      type: object
      required:
        - job_id
        - status
      title: JobStatus
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      description: Your brk_live_ API key.
      in: header
      name: X-API-Key

````