> ## 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 company's emails

> Forwarded email updates for a single company, newest first. Cursor-paginated over the email's sent date.



## OpenAPI

````yaml /openapi.json get /portfolio/{id}/emails
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}/emails:
    get:
      tags:
        - Portfolio
        - Emails
      summary: Get a company's emails
      description: >-
        Forwarded email updates for a single company, newest first.
        Cursor-paginated over the email's sent date.
      operationId: getPortfolioCompanyEmails
      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.
        - in: query
          name: limit
          schema:
            default: 50
            description: Max emails to return (1–100).
            example: 50
            type: integer
            minimum: 1
            maximum: 100
          description: Max emails to return (1–100).
        - in: query
          name: cursor
          schema:
            description: >-
              Return emails sent before this ISO 8601 timestamp (from
              `pagination.nextCursor`).
            example: '2026-05-30T14:00:00.000Z'
            type: string
          description: >-
            Return emails sent before this ISO 8601 timestamp (from
            `pagination.nextCursor`).
      responses:
        '200':
          description: A page of emails.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Email'
                  pagination:
                    $ref: '#/components/schemas/CursorPagination'
                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'
        '404':
          description: Company not found in this workspace's portfolio.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Email:
      type: object
      properties:
        id:
          type: string
          description: The email's unique id.
        attributes:
          type: object
          properties:
            company_id:
              type: string
              description: Id of the portfolio company this email belongs to.
            subject:
              anyOf:
                - type: string
                - type: 'null'
              description: Email subject line, if any.
            original_sender_name:
              anyOf:
                - type: string
                - type: 'null'
              description: Display name of the original sender (the founder/company).
            original_sender_email:
              anyOf:
                - type: string
                - type: 'null'
              description: Email address of the original sender.
            forwarder_email:
              type: string
              description: Email address of the person who forwarded this to Cura.
            text_body:
              anyOf:
                - type: string
                - type: 'null'
              description: Plain-text body of the email, if any.
            html_body:
              anyOf:
                - type: string
                - type: 'null'
              description: HTML body of the email, if any.
            email_date:
              type: string
              description: When the original email was sent (ISO 8601 timestamp).
            created_at:
              type: string
              description: When the email was ingested (ISO 8601 timestamp).
          required:
            - company_id
            - subject
            - original_sender_name
            - original_sender_email
            - forwarder_email
            - text_body
            - html_body
            - email_date
            - created_at
          additionalProperties: false
      required:
        - id
        - attributes
      additionalProperties: false
      description: A forwarded email update for a portfolio company.
    CursorPagination:
      type: object
      properties:
        limit:
          type: number
          description: The limit that was applied.
          example: 20
        nextCursor:
          anyOf:
            - type: string
            - type: 'null'
          description: >-
            Opaque cursor — pass back verbatim as `cursor` to fetch the next
            page; null when exhausted. Do not construct or parse this value.
      required:
        - limit
        - nextCursor
      additionalProperties: false
      description: Cursor-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>`.

````