PriceService

class PriceService(client: HttpClient = HttpClientProvider.client)

A service class that provides methods for fetching the latest and historical prices of items from the RuneScape Grand Exchange.

This service interacts with an external API to retrieve price information for a given item.

Constructors

Link copied to clipboard
constructor(client: HttpClient = HttpClientProvider.client)

Functions

Link copied to clipboard
suspend fun getHistoricalPrices(itemName: String): List<Int>

Fetches the historical prices for a given item from the RuneScape Grand Exchange API.

Link copied to clipboard
suspend fun getLatestPrice(itemName: String): ItemPriceResponse?

Fetches the latest price for a given item from the RuneScape Grand Exchange API.