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

# List companies



## OpenAPI

````yaml /api-reference/openapi.json get /v1/companies
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/companies:
    get:
      tags:
        - Companies
      summary: List companies
      parameters:
        - schema:
            type: string
          required: false
          name: cursor
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
          required: false
          name: limit
          in: query
        - schema:
            type: string
          required: false
          name: stage
          in: query
        - schema:
            type: string
            description: >-
              Filter by a custom property (name or id, see GET /v1/properties).
              Pair with `value`. Example: find the company you submitted with
              your own reference by storing it in a property and querying
              property=Application ID&value=APP-123.
          required: false
          name: property
          in: query
        - schema:
            type: string
            description: >-
              The property value to match: the answer string for text properties
              (exact, case-sensitive), or an option label or id for
              select/multi_select (archived options accepted, so historical rows
              stay findable).
          required: false
          name: value
          in: query
      responses:
        '200':
          description: Paginated list of companies in the caller's pipeline
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        name:
                          type: string
                        website:
                          type: string
                          nullable: true
                        industry:
                          type: string
                          nullable: true
                        stage:
                          type: string
                          nullable: true
                        problem_statement:
                          type: string
                          nullable: true
                        created_at:
                          type: string
                          nullable: true
                      required:
                        - id
                        - name
                        - website
                        - industry
                        - stage
                        - problem_statement
                        - created_at
                  next_cursor:
                    type: string
                    nullable: true
                required:
                  - data
                  - next_cursor
        '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
        '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

````