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

# Investors API v1

> Fundraising data per investor including funding date, round, amount raised, valuation and price per token

<Warning>
  This documents the **v1** endpoint, kept for existing integrations. The current version is [investors v5](/api-documents/investors/v5). New integrations should use v5.
</Warning>

Fundraising data per investor. Including funding date, round, amount raised, valuation and price per token.


## OpenAPI

````yaml GET /v1/fundraising/investors/{investorId}
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:
  /v1/fundraising/investors/{investorId}:
    get:
      tags:
        - Fundraising
      summary: Investors
      description: >-
        Fundraising data per investor including funding date, round, amount
        raised, valuation and price per token.
      operationId: getInvestorFundraising
      parameters:
        - name: investorId
          in: path
          required: true
          description: Investor identifier. Get from Investor List API.
          schema:
            type: string
          example: andreessen-horowitz
        - name: isLeadInvestor
          in: query
          required: false
          description: Show only rounds that are led by this investor
          schema:
            type: boolean
        - name: fundingDateMin
          in: query
          required: false
          description: >-
            Start date for time filtering (YYYY-MM-DD). Defaults to earliest
            available date.
          schema:
            type: string
            format: date
        - name: fundingDateMax
          in: query
          required: false
          description: >-
            End date for time filtering (YYYY-MM-DD). Defaults to furthest
            available date.
          schema:
            type: string
            format: date
        - name: raisedAmountMin
          in: query
          required: false
          description: Minimum amount raised for filtering
          schema:
            type: number
        - name: raisedAmountMax
          in: query
          required: false
          description: Maximum amount raised for filtering
          schema:
            type: number
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  metadata:
                    $ref: '#/components/schemas/Metadata'
                  status:
                    type: boolean
                  data:
                    type: object
                    properties:
                      investorId:
                        type: string
                        example: andreessen-horowitz
                      investorName:
                        type: string
                        example: Andreessen Horowitz (a16z)
                      website:
                        type: string
                        example: https://a16z.com/,https://twitter.com/a16zcrypto
                      fundingRounds:
                        type: array
                        items:
                          $ref: '#/components/schemas/InvestorFundingRound'
components:
  schemas:
    Metadata:
      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'
    InvestorFundingRound:
      type: object
      properties:
        tokenId:
          type: string
          description: Token Id
          example: apecoin
        roundName:
          type: string
          description: Round Name
          example: Seed Round
        isLeadInvestor:
          type: boolean
          description: Identifier for Lead Investor
          example: true
        fundingDate:
          type: string
          format: date-time
          example: '2022-03-22T00:00:00Z'
        totalAmountRaisedinThatRound:
          type: number
          description: Total Amount Raised in That Round
          example: 450000000
        valuation:
          type: number
          nullable: true
          description: Valuation for Funding Round
          example: 4000000000
        pricePerToken:
          type: number
          nullable: true
          description: Cost of Token for this Investor at that Round
    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

````