> ## 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.

# Submit a company

> Enqueue a decision-maker job for a company. Returns `202` immediately with a `job_id`;
the work runs asynchronously. Pass `callback_url` to receive a webhook instead of polling.



## OpenAPI

````yaml https://api.bossradar.com/openapi.json post /jobs
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:
    post:
      tags:
        - jobs
      summary: Submit a company
      description: >-
        Enqueue a decision-maker job for a company. Returns `202` immediately
        with a `job_id`;

        the work runs asynchronously. Pass `callback_url` to receive a webhook
        instead of polling.
      operationId: create_job_jobs_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JobRequest'
        required: true
      responses:
        '202':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobAccepted'
        '400':
          description: Unsupported operation or unparseable input.
        '401':
          description: Missing or invalid API key.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    JobRequest:
      properties:
        input:
          type: string
          title: Input
          description: Company URL, slug, numeric id, or name.
          examples:
            - linkedin.com/company/anthropic
        operation:
          type: string
          title: Operation
          description: What to do. v1 supports only `extract_dm`.
          default: extract_dm
        callback_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Callback Url
          description: Optional webhook — POSTed with the result when the job is done.
          examples:
            - https://your-server.com/hooks/bossradar
      type: object
      required:
        - input
      title: JobRequest
    JobAccepted:
      properties:
        job_id:
          type: string
          title: Job Id
          examples:
            - b24585c3-1f2a-4c0e-9a1b-2d3e4f5a6b7c
        status:
          type: string
          title: Status
          default: processing
          examples:
            - processing
      type: object
      required:
        - job_id
      title: JobAccepted
    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

````