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

# Submit a pitch deck



## OpenAPI

````yaml /api-reference/openapi.json post /v1/decks
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/decks:
    post:
      tags:
        - Deck intake
      summary: Submit a pitch deck
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  nullable: true
                company_name:
                  type: string
                company_url:
                  type: string
                  format: uri
                notes:
                  type: string
                founder_name:
                  type: string
                founder_email:
                  type: string
                  format: email
                properties:
                  type: string
                  description: >-
                    JSON object mapping a custom property (name or id) to an
                    option (label or id), e.g. {"Award Category":"Climate
                    Tech"}. Discover valid values via GET /v1/properties.
                    Unknown entries are ignored.
                pipeline_ids:
                  type: string
                  description: >-
                    Pipeline ids for the resulting deal, as a JSON array (e.g.
                    ["<uuid>","<uuid>"]) or comma-separated list. One deal per
                    pipeline — a company entering several awards names each
                    award's pipeline. Must be live pipelines of your team (ids
                    supplied by your Caplia contact). Omitted: the team's
                    default intake pipeline.
      responses:
        '202':
          description: >-
            Accepted; deck queued for processing. Poll poll_url until status is
            completed and STORE the returned company_id — it is the durable
            reference for reading this company back (scores, metrics, updates).
            If you fire-and-forget instead, you can recover the company later by
            querying GET /v1/companies?property=…&value=… on a reference you
            submitted in properties.
          content:
            application/json:
              schema:
                type: object
                properties:
                  job_id:
                    type: string
                    format: uuid
                  company_id:
                    type: string
                    nullable: true
                    format: uuid
                  status:
                    type: string
                    enum:
                      - queued
                  poll_url:
                    type: string
                    format: uri
                required:
                  - job_id
                  - company_id
                  - status
                  - poll_url
        '400':
          description: Bad request
          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
        '429':
          description: >-
            Rate limit exceeded; retry after the window resets (Retry-After
            header)
          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

````