using System;
using System.Collections.Generic;
using System.IO;
using System.Net.Http;
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.gugudata.com/ai/traditional-calendar-guidance?appkey=YOUR_APPKEY");
request.Content = new FormUrlEncodedContent(new Dictionary<string, string>
{
{ "date", "2026-07-10" },
{ "time", "12:00" },
{ "timezone", "Asia/Shanghai" },
{ "language", "zh-CN" },
{ "responseMode", "sync" },
{ "streaming", "false" }
});
var response = client.SendAsync(request).Result;
Console.WriteLine(response.Content.ReadAsStringAsync().Result);