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

Fluxbeam Token Price

FluxBeam Token Price Tool (fluxbeam_token_price_tool)

Fetches the current price of a specified Solana token in USD, utilizing the FluxBeam API. Useful for quick price checks.

Input: Requires a Solana token contract token_address.

class FluxBeamTokenPriceInput(BaseModel):
    token_address: str # The token address to check price on FluxBeam

Key Functionality:

  • Retrieves the token's current price in USD from data.fluxbeam.xyz.

  • Formats the price to 5 decimal places for consistency.


Sample Usage Queries (How an AI might use it):

  • "What's the FluxBeam price for token EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm?"

  • "Get the current price of DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 from FluxBeam."

  • "Fetch the FluxBeam USD price for 4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R."

  • "Use FluxBeam to find the price of HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3."

  • "Check FluxBeam for the price of mint token_mint_address_placeholder."

  • "Price check another_token_address via FluxBeam."

  • "FluxBeam price for contract_addr_here?"


class FluxBeamTokenPriceTool(BaseTool):
    name: ClassVar[str] = "fluxbeam_token_price_tool"
    description: ClassVar[str] = "Get the current price of a token in USD (USD) from FluxBeam."
    args_schema: ClassVar[Type[BaseModel]] = FluxBeamTokenPriceInput

Important:

  • Primarily designed for asynchronous execution (_arun). The synchronous version will return an informational message.

  • Relies on the external data.fluxbeam.xyz API; functionality and data accuracy depend on this third-party service.

PreviousRugcheck Token Information ToolNextBirdEye Token Trending

Last updated 2 days ago