# tokenPrice **Type:** GraphQL queries **Description:** Retrieve the latest price information for a specific token. This query behaves like `tokenPrices` but returns the price data for a single token instead of a list. It includes the token's price in both KDA and USD, the protocol where the price was sourced, and the timestamp of the latest update. Use this when you only need pricing information for a single token rather than fetching the full list. ## Arguments - tokenAddress (String): The on-chain address (module name) of the token whose price you want to retrieve. Example: `"kaddex.token"` - protocolAddress (String): (Optional) The module name of the DEX protocol to query the price from. If omitted, the default supported protocol (currently Sushi) is used. ## Response **Type:** TokenPrice **Description:** Represents the latest known price information for a specific token. `TokenPrice` provides the current valuation of a token in both KDA (the Kadena native token) and USD, along with metadata about the protocol where the token is traded and the timestamp of the most recent price update. ### Fields - id (ID): Globally unique identifier for this token price entry. - token (Token): The token associated with this price data. - priceInKda (Decimal): The current price of the token denominated in KDA. - priceInUsd (Decimal): The current price of the token denominated in USD. - protocolAddress (String): The protocol/module name on Kadena where this price was retrieved from. - updatedAt (DateTime): The timestamp of the most recent price update.