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



## OpenAPI

````yaml openapi.json GET /gateway/v1/search/fund
openapi: 3.1.0
info:
  title: Hermod
  version: 0.0.1
servers:
  - url: https://api.asksurf.ai
security: []
paths:
  /gateway/v1/search/fund:
    get:
      tags:
        - Search
      summary: Fund Search
      description: |-
        Searches funds by keyword.

        **Included fields:** name, tier, type, logo, top invested projects.
      operationId: search-fund
      parameters:
        - description: >-
            Search keyword — fund name like `a16z`, `paradigm`, or `coinbase
            ventures`
          explode: false
          in: query
          name: q
          required: true
          schema:
            description: >-
              Search keyword — fund name like `a16z`, `paradigm`, or `coinbase
              ventures`
            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
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseFundSearchItem'
          description: OK
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataAPIError'
          description: Error
      security:
        - AccessToken: []
components:
  schemas:
    DataResponseFundSearchItem:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataResponseFundSearchItem.json
          format: uri
          readOnly: true
          type: string
        data:
          items:
            $ref: '#/components/schemas/FundSearchItem'
          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
    FundSearchItem:
      additionalProperties: false
      properties:
        id:
          description: >-
            Surf fund UUID — pass as 'id' parameter to /fund/detail or
            /fund/portfolio for exact lookup
          type: string
        image:
          description: Fund logo URL
          type: string
        invested_projects_count:
          description: >-
            Total number of unique invested projects (a project with multiple
            funding rounds counts once)
          format: int64
          type: integer
        name:
          description: Fund name
          type: string
        tier:
          description: Fund tier ranking (lower is better)
          format: int64
          type: integer
        top_projects:
          description: Top invested projects (up to 5)
          items:
            $ref: '#/components/schemas/FundPortfolioItem'
          type:
            - array
            - 'null'
        type:
          description: Fund type
          type: string
      required:
        - id
        - name
        - tier
        - invested_projects_count
        - top_projects
      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
    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

````