LogoLogo
HuggingFace Community$LUMOXTelegram
  • Introduction
  • Roadmap
  • Partnerships and Listings
  • LumoKit: Solana AI Toolkit Framwork
    • Introduction to LumoKit
    • Installation Guide
      • Pre-requisites
      • Environment Configuration
      • Local Installation
  • How to Add Tools
  • Tools
    • Wallet Portfolio tool
    • Token Identification Tool
    • Rugcheck Token Information Tool
    • Fluxbeam Token Price
    • BirdEye Token Trending
    • Birdeye All Time Trades
    • CoinMarketCap Crypto News
    • Crypto.news Memecoin News
    • GeckoTerminal Trending Pump.Fun Tool
    • CoinGecko Global Crypto Data Tool
    • CoinGecko Trending Crypto Tool
    • CoinGecko Exchange Rates Tool
    • CoinGecko Coin Data Tool
    • CoinMarketCap Trending Coins Tool
    • DexScreener Top Boosts Tool
    • DexScreener Token Information
    • Jupiter Token Price
    • Jupiter Token Metadata Tool
    • Solana Send SOL Tool
    • Solana Send SPL Tokens Tool
    • Solana Burn Tokens Tool
    • Jupiter Swap (Buy/Sell) Tool
    • Pump.Fun Launch Coin Tool
  • Lumo-8B-Instruct Model
    • Model Overview
    • Capabilities and Limitations
    • Use Cases
  • Lumo Dataset
    • About Lumo-Iris
    • About Lumo-8B
    • Dataset Preparation
    • Training Metrics
  • Using The Model
    • HuggingFace Hub
    • How to Inference
  • Lumo Community
    • How to Contribute
    • Report Bugs/Issues
Powered by GitBook

Copyright © 2025 Lumo. All Rights Reserved. This software is open-source and licensed under the GNU Affero General Public License (AGPL) v3.0. You are free to redistribute and modify it under the terms of this license.

On this page
  1. Tools

Jupiter Token Metadata Tool

Jupiter Token Information Tool (jupiter_token_information_tool)

Fetches detailed metadata and information for a specific Solana token using its contract address, via the Jupiter API. Provides insights into a token's attributes and characteristics.

Input: Requires a Solana token_address.

class JupiterTokenInformationInput(BaseModel):
    token_address: str # The token address to get information about

Key Functionality:

  • Retrieves comprehensive information for the provided Solana token address from lite-api.jup.ag.

  • Includes details like the token's name, symbol, decimals, logo URI, daily volume, creation/minting timestamps, tags, and any additional metadata/extensions.


Sample Usage Queries (How an AI might use it): (Note: For queries using names/tickers, the system would first use a token identification tool to get addresses.)

  • "Get Jupiter token information for DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263."

  • "Show me the details for Wrapped SOL (So1111...1112) from Jupiter."

  • "Fetch token metadata for Raydium using Jupiter."

  • "What information does Jupiter have on the Jito token (jtojt...mCL)?"

  • "Look up details for mint token_mint_address_placeholder on Jupiter."

  • "Get token info for LUMO, FARTCOIN, and GOAT via Jupiter."

  • "Jupiter token details for contract_addr_here?"


class JupiterTokenInformationTool(BaseTool):
    name: ClassVar[str] = "jupiter_token_information_tool"
    description: ClassVar[str] = "Get detailed token information and metadata for a specific Solana token from Jupiter..."
    args_schema: ClassVar[Type[BaseModel]] = JupiterTokenInformationInput

Important:

  • This tool operates primarily asynchronously (_arun). The synchronous version returns an informational message.

  • Relies on the external Jupiter API (lite-api.jup.ag); functionality and data accuracy depend on this service.

  • Input must be a valid Solana token contract address.

PreviousJupiter Token PriceNextSolana Send SOL Tool

Last updated 2 days ago