Future<JSON> getTokenPrice(String symbol) async { final endpoint = "$baseURL/token/price?token=${symbol}"; final result = await getCall<JSON>(endpoint); return result; }