private static void CryptocurrencyListingsHistorical()
        {
            Console.WriteLine("\nEnter date (YYYY-MM-DD):");
            DateTime date;

            while (!DateTime.TryParse(Console.ReadLine(), out date))
            {
                Console.WriteLine("\nInvalid date. Please enter a date using the format YYYY-MM-DD\nEnter start date: ");
            }

            var client   = new CryptocurrencyClient(ApiKey, Sandbox);
            var response = client.ListingsHistorical(date, 1, 1);
            var json     = JsonConvert.SerializeObject(response, Formatting.Indented);

            ShowResponseAndWait(json);
        }