> For the complete documentation index, see [llms.txt](https://www.lumolabs.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.lumolabs.ai/tools/jupiter-token-metadata-tool.md).

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

{% hint style="info" %}
**Input:** Requires a Solana `token_address`.
{% endhint %}

```python
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`?"

***

```python
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.
