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

# Get total supply for a token

> Returns the total supply of a token on the specified network. Supports Solana (SPL mint address) and EVM-compatible networks (ERC-20 contract address).



## OpenAPI

````yaml /api-reference/data-api.json get /v2/tokens/total-supply
openapi: 3.0.0
info:
  title: Range Data API
  description: >-
    The Range Data API for crypto addresses, networks, transactions, and
    entities.
  version: 1.7.9
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Entity Information
    description: Get information about entities.
  - name: Network Information
    description: Get information about networks.
  - name: Protocols
    description: Get information about cross-chain protocols.
  - name: Token transfers
    description: Get information about token transfers.
paths:
  /v2/tokens/total-supply:
    get:
      tags:
        - Token Information
      summary: Get total supply for a token
      description: >-
        Returns the total supply of a token on the specified network. Supports
        Solana (SPL mint address) and EVM-compatible networks (ERC-20 contract
        address).
      operationId: getTotalSupply
      parameters:
        - name: network
          required: true
          in: query
          description: Network name (e.g. eth, solana)
          schema:
            type: string
        - name: token
          required: true
          in: query
          description: Token contract address (EVM) or mint address (Solana)
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenSupplyResponse'
components:
  schemas:
    TokenSupplyResponse:
      type: object
      properties:
        token:
          type: string
          description: Token name
        network:
          type: string
          description: Network name
        symbol:
          type: string
          description: Token ticker symbol
        name:
          type: string
          description: Token name
        total_supply:
          type: number
          description: Total supply with decimals applied
        total_supply_raw:
          type: string
          description: Raw total supply as integer string
        decimals:
          type: number
          description: Number of decimal places
      required:
        - token
        - network
        - total_supply
        - total_supply_raw
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: API Key
      description: 'Use Authorization: Bearer <api-key>'
      type: http

````