# tokenPrices **Type:** GraphQL queries **Description:** Retrieve the latest price information for all tokens available in a specific protocol. This query returns a list of `TokenPrice` objects, each containing the current price of a token in both KDA and USD, along with metadata about the protocol and the timestamp of the most recent update. It is commonly used by explorers, analytics dashboards, and DEX frontends to power price feeds, portfolio valuations, and liquidity analytics. You can optionally specify a `protocolAddress` to restrict the results to a particular DEX module. If omitted, the default supported protocol (currently Sushi) is used. ## Arguments - protocolAddress (String): (Optional) The module name of the DEX protocol whose token prices you want to retrieve. 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.