Documentation
Getting Started

Ruby World Time API Implementation

Clean implementation using Net::HTTP.

Ruby Integration Snippet
require 'net/http'
require 'json'

url = URI("https://currenttime.now/public/api/ip")
response = Net::HTTP.get(url)
data = JSON.parse(response)
puts "Time: #{data['datetime']} Offset: #{data['utc_offset']}" 

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 |