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

# Get async job status

> Check the status of a public async job, including PDF-processing, large-audio transcription, and report-generation jobs.



## OpenAPI

````yaml /developer-docs/api/openapi.json get /v1/public/jobs/{job_id}
openapi: 3.1.0
info:
  title: Everbility Public API
  version: 1.0.0
  description: >-
    Pull reports from Everbility, upload notes and files, poll asynchronous
    jobs, and generate reports from saved templates. Partner endpoints let
    approved platforms connect practices with OAuth 2.0, launch report-writing
    sessions, receive signed lifecycle webhooks, and retrieve completed
    documents.
servers:
  - url: https://api.everbility.com
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/public/jobs/{job_id}:
    get:
      tags:
        - external
      summary: Get async job status
      description: >-
        Check the status of a public async job, including PDF-processing,
        large-audio transcription, and report-generation jobs.
      operationId: get_job_status_v1_external_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/ExternalJobResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - bearerAuth: []
components:
  schemas:
    ExternalJobResponse:
      properties:
        job_id:
          type: string
          title: Job Id
        task_type:
          type: string
          title: Task Type
        start_timestamp:
          anyOf:
            - type: string
            - type: 'null'
          title: Start Timestamp
        end_timestamp:
          anyOf:
            - type: string
            - type: 'null'
          title: End Timestamp
        status:
          type: string
          title: Status
        progress:
          anyOf:
            - type: integer
            - type: number
          title: Progress
        error:
          anyOf:
            - additionalProperties:
                type: string
              type: object
            - type: 'null'
          title: Error
        result:
          anyOf:
            - type: object
            - type: 'null'
          title: Result
      type: object
      required:
        - job_id
        - task_type
        - status
        - progress
      title: ExternalJobResponse
    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:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Use a Clerk-backed Everbility user or organisation API key directly as
        the bearer token.

````