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

# Get decision makers

> Decision makers for a resolved company — the ranked verdicts produced by the pipeline.



## OpenAPI

````yaml https://api.bossradar.com/openapi.json get /company/{company_id}/dm
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:
  /company/{company_id}/dm:
    get:
      tags:
        - jobs
      summary: Get decision makers
      description: >-
        Decision makers for a resolved company — the ranked verdicts produced by
        the pipeline.
      operationId: company_dm_company__company_id__dm_get
      parameters:
        - name: company_id
          in: path
          required: true
          schema:
            type: integer
            title: Company Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DMResponse'
        '401':
          description: Missing or invalid API key.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    DMResponse:
      properties:
        company_id:
          type: integer
          title: Company Id
          examples:
            - 3384253
        count:
          type: integer
          title: Count
          examples:
            - 5
        decision_makers:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Decision Makers
          description: Verdict objects (name, role, seniority tier, LinkedIn URL, signals).
      type: object
      required:
        - company_id
        - count
        - decision_makers
      title: DMResponse
    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

````