Documentation
Getting Started
Endpoints
Language Guides
C# / .NET World Time API Implementation
Async implementation using HttpClient.
C# / .NET Integration Snippet
using var client = new HttpClient();
var response = await client.GetStringAsync("https://currenttime.now/public/api/ip");
// Parse with System.Text.Json
Console.WriteLine(response);