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

# Token Fundraising API v5

> Slug-based path identifier

v5 update: **Path identifier uses the token slug (consistent with the v5 slug-only convention). Same params and response shape as v1.**


## OpenAPI

````yaml GET /v5/fundraising/token/{tokenId}
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/token/{tokenId}:
    get:
      tags:
        - Fundraising
      summary: Token Fundraising v5
      description: >-
        Fundraising data per token. v5 uses the slug as the path identifier,
        consistent with the v5 slug-only convention.
      operationId: getTokenFundraisingV5
      parameters:
        - name: tokenId
          in: path
          required: true
          description: Token identifier (slug). Get from Token List API.
          schema:
            type: string
          example: uniswap
        - 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:
                      tokenId:
                        type: string
                        example: uniswap
                      tokenName:
                        type: string
                        example: Uniswap
                      tokenSymbol:
                        type: string
                        example: UNI
                      listedMethod:
                        type: string
                        example: INTERNAL
                      totalAmountRaised:
                        type: number
                        example: 181000000
                      unlockedInvestor:
                        type: number
                        nullable: true
                      investorReleasedPercentage:
                        type: number
                        nullable: true
                      fundingRounds:
                        type: array
                        items:
                          $ref: '#/components/schemas/TokenFundingRound'
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'
    TokenFundingRound:
      type: object
      properties:
        fundingRound:
          type: string
          description: Funding Round
          example: Series B
        fundingDate:
          type: string
          format: date-time
          description: Funding Date
          example: '2022-10-13T00:00:00Z'
        raiseType:
          type: string
          nullable: true
          description: Raise Type
        amountRaised:
          type: number
          description: Raise Amount in that Round
          example: 165000000
        valuation:
          type: number
          nullable: true
          description: Valuation
          example: 1660000000
        pricePerToken:
          type: number
          nullable: true
          description: Cost of Token for this Investor at that Round
        sourceURLList:
          type: array
          items:
            type: string
          description: URL to Sources of Data
          example:
            - https://blog.uniswap.org/bringing-web3-to-everyone
        investors:
          type: array
          items:
            $ref: '#/components/schemas/FundingRoundInvestor'
        numberOfInvestors:
          type: integer
          example: 5
    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'
    FundingRoundInvestor:
      type: object
      properties:
        investorId:
          type: string
          description: Identifier to call for a Dataset
          example: polychain-capital
        investorName:
          type: string
          description: Investor Name
          example: Polychain Capital
        isLeadInvestor:
          type: boolean
          description: Identifier for Lead Investors
          example: true
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Tokenomist API key

````