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

# List portfolio companies



## OpenAPI

````yaml /openapi.json get /portfolio
openapi: 3.1.0
info:
  title: Cura API
  version: 1.0.0
  description: >-
    Public, read-only access to a workspace's portfolio. Authenticate every
    request with your `cura_…` API key as a bearer token.
servers:
  - url: https://api.cura.inc
    description: Production
security:
  - ApiKey: []
paths:
  /portfolio:
    get:
      tags:
        - Portfolio
      summary: List portfolio companies
      operationId: listPortfolioCompanies
      parameters:
        - in: query
          name: limit
          schema:
            default: 50
            description: Max companies to return (1–100).
            example: 50
            type: integer
            minimum: 1
            maximum: 100
          description: Max companies to return (1–100).
        - in: query
          name: offset
          schema:
            default: 0
            description: Number of companies to skip.
            example: 0
            type: integer
            minimum: 0
            maximum: 9007199254740991
          description: Number of companies to skip.
        - in: query
          name: filter
          schema:
            default: {}
            type: object
            properties:
              priority:
                description: Only companies with this tracking priority.
                type: string
                enum:
                  - high
                  - medium
                  - low
          style: deepObject
          explode: true
      responses:
        '200':
          description: A page of portfolio companies.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/PortfolioCompany'
                  pagination:
                    $ref: '#/components/schemas/OffsetPagination'
                required:
                  - data
                  - pagination
                additionalProperties: false
        '400':
          description: Invalid query parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    PortfolioCompany:
      type: object
      properties:
        id:
          type: string
          description: The portfolio company's unique id.
        attributes:
          type: object
          properties:
            domain:
              anyOf:
                - type: string
                - type: 'null'
              description: Primary domain.
              example: acme.com
            name:
              anyOf:
                - type: string
                - type: 'null'
              description: Company name.
            logo_url:
              anyOf:
                - type: string
                - type: 'null'
              description: URL of the company logo.
            headline:
              anyOf:
                - type: string
                - type: 'null'
              description: Short one-line tagline.
            description:
              anyOf:
                - type: string
                - type: 'null'
              description: Longer company description.
            linkedin:
              anyOf:
                - type: string
                - type: 'null'
              description: LinkedIn company page URL.
            x:
              anyOf:
                - type: string
                - type: 'null'
              description: X (Twitter) profile URL.
            careers_url:
              anyOf:
                - type: string
                - type: 'null'
              description: Careers / jobs page URL.
            domain_aliases:
              type: array
              items:
                type: string
              description: Additional domains owned by the company.
            priority:
              anyOf:
                - type: string
                  enum:
                    - high
                    - medium
                    - low
                - type: 'null'
              description: Workspace-assigned tracking priority.
            labels:
              type: array
              items:
                type: string
              description: Workspace labels applied to the company.
          required:
            - domain
            - name
            - logo_url
            - headline
            - description
            - linkedin
            - x
            - careers_url
            - domain_aliases
            - priority
            - labels
          additionalProperties: false
      required:
        - id
        - attributes
      additionalProperties: false
      description: A portfolio company.
    OffsetPagination:
      type: object
      properties:
        limit:
          type: number
          description: The limit that was applied.
          example: 50
        offset:
          type: number
          description: The offset that was applied.
          example: 0
        hasMore:
          type: boolean
          description: True if more results exist past this page.
          example: true
      required:
        - limit
        - offset
        - hasMore
      additionalProperties: false
      description: Offset-based pagination metadata.
    Error:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message.
      required:
        - error
      additionalProperties: false
      description: An error response.
  securitySchemes:
    ApiKey:
      type: http
      scheme: bearer
      description: >-
        Your workspace API key (`cura_…`), sent as `Authorization: Bearer
        <key>`.

````