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

# Get intake job status



## OpenAPI

````yaml /api-reference/openapi.json get /v1/jobs/{id}
openapi: 3.0.0
info:
  version: 1.0.0
  title: Caplia Investor API
  description: >-
    Public REST API for the Caplia Investor Portal. Auth: `Authorization: Bearer
    cap_inv_live_<32 chars>`.
  contact:
    name: Caplia
    url: https://docs.venture.caplia.ai
servers:
  - url: https://api.venture.caplia.ai
    description: Production
security: []
paths:
  /v1/jobs/{id}:
    get:
      tags:
        - Deck intake
      summary: Get intake job status
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: id
          in: path
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  job_id:
                    type: string
                  company_id:
                    type: string
                    nullable: true
                  status:
                    type: string
                    enum:
                      - queued
                      - processing
                      - completed
                      - failed
                  created_at:
                    type: string
                  completed_at:
                    type: string
                    nullable: true
                  queue:
                    type: object
                    nullable: true
                    properties:
                      position:
                        type: integer
                        nullable: true
                      depth:
                        type: integer
                    required:
                      - position
                      - depth
                  results:
                    type: object
                    properties:
                      company:
                        nullable: true
                      cri:
                        nullable: true
                      thesis_matches:
                        nullable: true
                  errors:
                    type: array
                    items:
                      nullable: true
                required:
                  - job_id
                  - company_id
                  - status
                  - created_at
                  - completed_at
                  - queue
                  - results
                  - errors
        '404':
          description: Not found or out of scope
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      request_id:
                        type: string
                    required:
                      - code
                      - message
                      - request_id
                required:
                  - error
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      request_id:
                        type: string
                    required:
                      - code
                      - message
                      - request_id
                required:
                  - error

````