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

# /solscan/tokens

> Get a Solana token's profile and market data by its mint address

**Price:** 1 credit

**💡 AI Hint:** Get the full profile of a Solana SPL token by its mint address. Returns name, symbol, icon, decimals, total supply, current USD price, market cap, holder count, the mint/freeze/update authorities, creator, creation and first-mint times, royalty (seller fee basis points), mutability, a token quality score, and social/extension links (website, twitter, telegram, discord, CoinGecko/CoinMarketCap ids).

**⚠️ Common errors:** 412: Token not found



## OpenAPI

````yaml /openapi-filtered.json post /api/solscan/tokens
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/solscan/tokens:
    post:
      tags:
        - /solscan
      summary: /solscan/tokens
      description: >-
        Get a Solana token's profile and market data by its mint address


        **Price:** 1 credit


        **💡 AI Hint:** Get the full profile of a Solana SPL token by its mint
        address. Returns name, symbol, icon, decimals, total supply, current USD
        price, market cap, holder count, the mint/freeze/update authorities,
        creator, creation and first-mint times, royalty (seller fee basis
        points), mutability, a token quality score, and social/extension links
        (website, twitter, telegram, discord, CoinGecko/CoinMarketCap ids).


        **⚠️ Common errors:** 412: Token not found
      operationId: __api_solscan_tokens_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SolscanTokenPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SolscanToken'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SolscanTokenPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        address:
          type: string
          description: Token mint address (base58)
          examples:
            - EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
      type: object
      required:
        - address
    SolscanToken:
      properties:
        '@type':
          type: string
          default: SolscanToken
        address:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        symbol:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        decimals:
          anyOf:
            - type: integer
            - type: 'null'
        total_supply:
          anyOf:
            - type: number
            - type: 'null'
        supply_raw:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        market_cap:
          anyOf:
            - type: number
            - type: 'null'
        holder_count:
          anyOf:
            - type: integer
            - type: 'null'
        token_authority:
          anyOf:
            - type: string
            - type: 'null'
        freeze_authority:
          anyOf:
            - type: string
            - type: 'null'
        update_authority:
          anyOf:
            - type: string
            - type: 'null'
        creator:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        first_mint_at:
          anyOf:
            - type: integer
            - type: 'null'
        created_tx:
          anyOf:
            - type: string
            - type: 'null'
        first_mint_tx:
          anyOf:
            - type: string
            - type: 'null'
        seller_fee_basis_points:
          anyOf:
            - type: integer
            - type: 'null'
        is_mutable:
          anyOf:
            - type: boolean
            - type: 'null'
        token_score:
          anyOf:
            - type: integer
            - type: 'null'
        extensions:
          anyOf:
            - $ref: '#/components/schemas/SolscanTokenExtensions'
            - type: 'null'
      type: object
      required:
        - address
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SolscanTokenExtensions:
      properties:
        '@type':
          type: string
          default: SolscanTokenExtensions
        website:
          anyOf:
            - type: string
            - type: 'null'
        twitter:
          anyOf:
            - type: string
            - type: 'null'
        telegram:
          anyOf:
            - type: string
            - type: 'null'
        discord:
          anyOf:
            - type: string
            - type: 'null'
        medium:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        coingecko_id:
          anyOf:
            - type: string
            - type: 'null'
        coinmarketcap_id:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````