private static void CryptocurrencyMap()
        {
            Console.WriteLine("\nEnter symbol (separate with comma): ");
            var symbol = Console.ReadLine();

            var client   = new CryptocurrencyClient(ApiKey, Sandbox);
            var response = client.Map(null, 1, 10, null, symbol);
            var json     = JsonConvert.SerializeObject(response, Formatting.Indented);

            ShowResponseAndWait(json);
        }