Documentation
Getting Started

Java World Time API Implementation

Modern implementation using HttpClient (Java 11+).

Java Integration Snippet
import java.net.http.*;
import java.net.URI;

public class TimeClient {
    public static void main(String[] args) throws Exception {
        var client = HttpClient.newHttpClient();
        var request = HttpRequest.newBuilder()
            .uri(URI.create("https://currenttime.now/public/api/ip"))
            .build();
        var response = client.send(request, HttpResponse.BodyHandlers.ofString());
        System.out.println(response.body());
    }
}

Current time in major cities:

Current time in major countries:

Current time now in time zones:

UTC | GMT | CET | PST | MST | CST | EST | EET | IST | China (CST) | JST | AEST | SAST | MSK | NZST |