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

# Investor List API v5

> Pagination and date range filtering

v5 update: **Adds pagination (`page`, `pageSize`) and optional `startLatestFundingDate` / `endLatestFundingDate` filters.**


## OpenAPI

````yaml GET /v5/fundraising/investors/list
openapi: 3.0.3
info:
  title: Tokenomist API
  description: >-
    Comprehensive time series data for crypto token unlocks, emissions,
    allocations, fundraising, burns, and buybacks.
  version: 1.0.0
servers:
  - url: https://api.tokenomist.ai
security:
  - apiKey: []
paths:
  /v5/fundraising/investors/list:
    get:
      tags:
        - Fundraising
      summary: Investor List v5
      description: >-
        Get a list of all investorIDs. v5 adds pagination and optional
        startLatestFundingDate/endLatestFundingDate filters.
      operationId: getInvestorListV5
      parameters:
        - name: startLatestFundingDate
          in: query
          required: false
          description: >-
            Filter investors whose latestFundingDate is on or after this date
            (YYYY-MM-DD).
          schema:
            type: string
            format: date
        - name: endLatestFundingDate
          in: query
          required: false
          description: >-
            Filter investors whose latestFundingDate is on or before this date
            (YYYY-MM-DD).
          schema:
            type: string
            format: date
        - name: page
          in: query
          required: false
          description: Page number (1-indexed).
          schema:
            type: integer
            minimum: 1
        - name: pageSize
          in: query
          required: false
          description: Number of investors per page.
          schema:
            type: integer
            minimum: 1
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  metadata:
                    $ref: '#/components/schemas/PaginatedMetadata'
                  status:
                    type: boolean
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        investorId:
                          type: string
                          description: Identifier to call for a Dataset
                          example: 01-advisors
                        investorName:
                          type: string
                          description: Investor Name
                          example: 01 Advisors
                        website:
                          type: string
                          description: Link to Investor Website
                          example: >-
                            https://01a.com/,https://www.linkedin.com/company/01a/,https://x.com/01Advisors
                        latestFundingDate:
                          type: string
                          format: date-time
                          description: Latest Investment Activity From The Investor
                          example: '2021-11-04T00:00:00Z'
components:
  schemas:
    PaginatedMetadata:
      type: object
      properties:
        queryDate:
          type: string
          format: date-time
          description: Timestamp of the query
          example: '2026-01-08T10:13:58Z'
        credit:
          $ref: '#/components/schemas/Credit'
        page:
          type: integer
          description: Current page number (1-indexed)
          example: 1
        pageSize:
          type: integer
          description: Number of items per page
          example: 50
        totalPages:
          type: integer
          description: Total number of pages available for the current query
          example: 10
        total:
          type: integer
          description: Total number of items across all pages
          example: 487
    Credit:
      type: object
      description: >-
        Optional quota state for the calling account, returned on most
        authenticated responses (both success and error). Treat it as optional:
        it may be absent on unauthenticated requests, demo/playground responses,
        and briefly right after a monthly reset. `used` is near-real-time and
        may lag the true count by a request or two.
      properties:
        used:
          type: integer
          description: >-
            Requests counted in the current window (approximate / eventually
            consistent).
          example: 213
        limit:
          type: integer
          description: The plan's request quota for the window.
          example: 300
        resetAt:
          type: string
          format: date-time
          description: >-
            When the quota resets (RFC3339 UTC). Present for monthly plans;
            absent for lifetime-quota plans.
          example: '2026-08-01T00:00:00Z'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Tokenomist API key

````