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

# Get a portfolio company



## OpenAPI

````yaml /openapi.json get /portfolio/{id}
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/{id}:
    get:
      tags:
        - Portfolio
      summary: Get a portfolio company
      operationId: getPortfolioCompany
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
            pattern: >-
              ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
            description: Portfolio company id.
          required: true
          description: Portfolio company id.
      responses:
        '200':
          description: The portfolio company.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/PortfolioCompany'
                required:
                  - data
                additionalProperties: false
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Company not found in this workspace's portfolio.
          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.
    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>`.

````