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

# List your jobs

> Your jobs, newest first, scoped to your key — a read utility (not part of the core 2-call flow).
`q` filters by the submitted input; `limit` (max 100) + `skip` paginate.



## OpenAPI

````yaml https://api.bossradar.com/openapi.json get /v1/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 /v1/jobs/{id}` or
    receive a **webhook**.


    All endpoints are versioned under **`/v1`**. Pin the version; new fields are
    added within `/v1`,

    breaking changes ship under a new `/vN`.


    ### 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
    /v1/jobs` spends money, so it

    is never anonymous.


    ### The flow — two calls

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

    2. Poll `GET /v1/jobs/{job_id}` until `status: "done"` — that response
    already **contains the decision
       makers inline** (`company` + `decision_maker_count` + `decision_makers[]`). No third call.

    Re-polling a finished job returns the same result (idempotent, already paid
    for), so a lost response

    never costs a new job.


    ### Webhook (optional — instead of polling)

    Pass `callback_url` on `POST /v1/jobs`. When the job is done we `POST` that
    URL with the full result:

    `{ job_id, company_id, company, status: "done", decision_maker_count,
    decision_makers[] }`. You just need

    an HTTPS endpoint on your side that returns `2xx`.
  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.
  - name: demo
    description: Public, login-free showcase over recently-searched companies.
paths:
  /v1/jobs:
    get:
      tags:
        - jobs
      summary: List your jobs
      description: >-
        Your jobs, newest first, scoped to your key — a read utility (not part
        of the core 2-call flow).

        `q` filters by the submitted input; `limit` (max 100) + `skip` paginate.
      operationId: list_jobs_v1_jobs_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 20
            title: Limit
        - name: skip
          in: query
          required: false
          schema:
            type: integer
            default: 0
            title: Skip
        - name: q
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Q
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobList'
        '401':
          description: Missing or invalid API key.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    JobList:
      properties:
        count:
          type: integer
          title: Count
          description: Total jobs matching the query (for pagination).
          examples:
            - 42
        jobs:
          items:
            $ref: '#/components/schemas/JobListItem'
          type: array
          title: Jobs
      type: object
      required:
        - count
        - jobs
      title: JobList
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    JobListItem:
      properties:
        job_id:
          type: string
          title: Job Id
        input:
          anyOf:
            - type: string
            - type: 'null'
          title: Input
          examples:
            - linkedin.com/company/anthropic
        operation:
          anyOf:
            - type: string
            - type: 'null'
          title: Operation
          examples:
            - decision_makers
        status:
          type: string
          title: Status
          examples:
            - done
        company_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Company Id
          examples:
            - 3384253
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
          description: ISO 8601 UTC.
          examples:
            - '2026-07-18T06:29:45Z'
      type: object
      required:
        - job_id
        - status
      title: JobListItem
    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

````