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

# Fund Portfolio



## OpenAPI

````yaml openapi.json GET /gateway/v1/fund/portfolio
openapi: 3.1.0
info:
  title: Hermod
  version: 0.0.1
servers:
  - url: https://api.asksurf.ai
security: []
paths:
  /gateway/v1/fund/portfolio:
    get:
      tags:
        - Fund
      summary: Fund Portfolio
      description: >-
        Returns investment rounds for a fund's portfolio, sorted by date (newest
        first).


        A project may appear multiple times if the fund participated in multiple
        rounds.


        **Included fields:** project name, logo, date, raise amount, lead
        investor status.


        **Lookup:** by UUID (`id`) or name (`q`).
      operationId: fund-portfolio
      parameters:
        - description: >-
            Surf fund UUID. PREFERRED — always use this when available from a
            previous response (e.g. id from /search/fund). Takes priority over
            q.
          explode: false
          in: query
          name: id
          schema:
            description: >-
              Surf fund UUID. PREFERRED — always use this when available from a
              previous response (e.g. id from /search/fund). Takes priority over
              q.
            examples:
              - ef3b6da9-283d-4080-b3c7-87b1b45924dc
            type: string
        - description: >-
            Fuzzy fund name search. Only use when 'id' is not available. May
            return unexpected results for ambiguous names.
          explode: false
          in: query
          name: q
          schema:
            description: >-
              Fuzzy fund name search. Only use when 'id' is not available. May
              return unexpected results for ambiguous names.
            examples:
              - a16z
            maxLength: 100
            type: string
        - description: Results per page
          explode: false
          in: query
          name: limit
          schema:
            default: 20
            description: Results per page
            examples:
              - 20
            format: int64
            maximum: 100
            minimum: 1
            type: integer
        - description: Pagination offset
          explode: false
          in: query
          name: offset
          schema:
            default: 0
            description: Pagination offset
            examples:
              - 0
            format: int64
            minimum: 0
            type: integer
        - description: >-
            Filter by lead investor status. Omit or leave empty for all
            investments.
          explode: false
          in: query
          name: is_lead
          schema:
            description: >-
              Filter by lead investor status. Omit or leave empty for all
              investments.
            enum:
              - 'true'
              - 'false'
              - ''
            examples:
              - 'true'
            type: string
        - description: Only include investments at or after this Unix timestamp (seconds)
          explode: false
          in: query
          name: invested_after
          schema:
            description: Only include investments at or after this Unix timestamp (seconds)
            examples:
              - 1704067200
            format: int64
            type: integer
        - description: Only include investments before this Unix timestamp (seconds)
          explode: false
          in: query
          name: invested_before
          schema:
            description: Only include investments before this Unix timestamp (seconds)
            examples:
              - 1735689600
            format: int64
            type: integer
        - description: Field to sort results by
          explode: false
          in: query
          name: sort_by
          schema:
            default: invested_at
            description: Field to sort results by
            enum:
              - invested_at
              - recent_raise
              - total_raise
            examples:
              - recent_raise
            type: string
        - description: Sort order
          explode: false
          in: query
          name: order
          schema:
            default: desc
            description: Sort order
            enum:
              - asc
              - desc
            examples:
              - desc
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseFundPortfolioItem'
          description: OK
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataAPIError'
          description: Error
      security:
        - AccessToken: []
components:
  schemas:
    DataResponseFundPortfolioItem:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataResponseFundPortfolioItem.json
          format: uri
          readOnly: true
          type: string
        data:
          items:
            $ref: '#/components/schemas/FundPortfolioItem'
          type:
            - array
            - 'null'
        meta:
          $ref: '#/components/schemas/OffsetMeta'
      required:
        - data
        - meta
      type: object
    DataAPIError:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataAPIError.json
          format: uri
          readOnly: true
          type: string
        error:
          $ref: '#/components/schemas/DataAPIErrorDetail'
      required:
        - error
      type: object
    FundPortfolioItem:
      additionalProperties: false
      properties:
        invested_at:
          description: Investment date (Unix seconds)
          format: int64
          type: integer
        is_lead:
          description: Whether this fund was the lead investor
          type: boolean
        project_id:
          description: >-
            Surf project UUID — pass as 'id' parameter to /project/detail,
            /project/events, or /project/defi/metrics for exact lookup. Prefer
            over 'q' (fuzzy name search).
          type: string
        project_logo:
          description: Project logo URL
          type: string
        project_name:
          description: Project name
          type: string
        project_slug:
          description: Project slug
          type: string
        recent_raise:
          description: Most recent funding round amount in USD
          format: double
          type: number
        total_raise:
          description: Total amount raised by the project in USD
          format: double
          type: number
      required:
        - project_id
        - project_name
        - is_lead
      type: object
    OffsetMeta:
      additionalProperties: false
      properties:
        cached:
          description: Whether this response was served from cache
          type: boolean
        credits_used:
          description: Credits deducted for this request
          format: int64
          type: integer
        limit:
          description: Maximum number of items returned in this response
          format: int64
          type: integer
        offset:
          description: Number of items skipped (pagination offset)
          format: int64
          type: integer
        total:
          description: >-
            Total number of matching items (before pagination). Omitted when
            total is unknown.
          format: int64
          type: integer
      required:
        - limit
        - offset
        - credits_used
        - cached
      type: object
    DataAPIErrorDetail:
      additionalProperties: false
      properties:
        code:
          type: string
        message:
          type: string
      required:
        - code
        - message
      type: object

````