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

# List VC Investors

> List VC investors with filters for type, ticket size, and geography



## OpenAPI

````yaml GET /vcs
openapi: 3.1.0
info:
  title: VC Investors API
  description: >-
    Programmatic access to global VC investors including types, ticket sizes,
    geographies, and contacts. Rate limit: 60 requests per minute.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://www.leadsontrees.com/api/v1
security:
  - apiKeyAuth: []
paths:
  /vcs:
    get:
      description: List VC investors with filters for type, ticket size, and geography
      parameters:
        - name: ticket_size
          in: query
          description: Exact ticket size to match (mutually exclusive with min/max)
          schema:
            type: integer
            minimum: 0
          example: 500000
        - name: vc_types
          in: query
          description: Filter by investor types
          schema:
            type: array
            items:
              type: string
          style: form
          explode: false
          example:
            - PE fund
            - VC
        - name: country
          in: query
          description: Country of the investor
          schema:
            type: string
          example: United States
        - name: search
          in: query
          description: Free-text search across VC names and countries
          schema:
            type: string
          example: silver
        - name: ticket_size_min
          in: query
          description: Minimum ticket size
          schema:
            type: integer
            minimum: 0
          example: 1000000
        - name: ticket_size_max
          in: query
          description: Maximum ticket size
          schema:
            type: integer
            minimum: 0
          example: 20000000
        - name: page
          in: query
          description: Page number
          schema:
            type: integer
            minimum: 1
          example: 2
        - name: date_from
          in: query
          description: Start date (YYYY-MM-DD)
          schema:
            type: string
            format: date
          example: '2024-01-01'
        - name: date_to
          in: query
          description: End date for updated records (YYYY-MM-DD)
          schema:
            type: string
            format: date
          example: '2024-12-31'
      responses:
        '200':
          description: VC investors response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VCResponse'
              example:
                message: OK
                params:
                  date_from: null
                  date_to: null
                  page: 1
                  vc_types:
                    - PE fund
                  search: null
                  ticket_size: null
                  ticket_size_min: null
                  ticket_size_max: null
                response:
                  data:
                    - id: 685b1fabdb6f6d678de6ef74
                      name: Silver Lake Partners
                      vc_type: PE fund
                      countries:
                        - USA
                      hq_address: ''
                      ticket_size_min: 100000000
                      ticket_size_max: 2500000000
                      contacts:
                        linkedin: https://www.linkedin.com/company/silver-lake-partners/
                        twitter: ''
                        website: https://www.silverlake.com
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limit exceeded (60 requests per minute)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RateLimitExceeded'
components:
  schemas:
    VCResponse:
      type: object
      required:
        - message
        - params
        - response
      properties:
        message:
          type: string
          example: OK
        params:
          $ref: '#/components/schemas/VCRequestParams'
        response:
          $ref: '#/components/schemas/VCResponseData'
    Error:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: integer
          format: int32
        message:
          type: string
    RateLimitExceeded:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: integer
          format: int32
          example: 429
        message:
          type: string
          example: Rate limit exceeded. Maximum 60 requests per minute.
    VCRequestParams:
      type: object
      properties:
        date_from:
          type: string
          format: date
          nullable: true
        date_to:
          type: string
          format: date
          nullable: true
        page:
          type: integer
          nullable: true
        vc_types:
          type: array
          items:
            type: string
          nullable: true
        search:
          type: string
          nullable: true
        ticket_size:
          type: integer
          nullable: true
        ticket_size_min:
          type: integer
          nullable: true
        ticket_size_max:
          type: integer
          nullable: true
    VCResponseData:
      type: object
      required:
        - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/VCRecord'
    VCRecord:
      type: object
      required:
        - id
        - name
        - vc_type
      properties:
        id:
          type: string
          example: 685b1fabdb6f6d678de6ef74
        name:
          type: string
          example: Silver Lake Partners
        vc_type:
          type: string
          example: PE fund
        countries:
          type: array
          items:
            type: string
        hq_address:
          type: string
          nullable: true
        ticket_size_min:
          type: integer
          nullable: true
        ticket_size_max:
          type: integer
          nullable: true
        contacts:
          $ref: '#/components/schemas/VCContacts'
    VCContacts:
      type: object
      properties:
        linkedin:
          type: string
          format: uri
          nullable: true
        twitter:
          type: string
          format: uri
          nullable: true
        website:
          type: string
          format: uri
          nullable: true
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-lot-api-key
      description: API key for Investors API authentication

````