Time
Retrieve accurate time information for any location worldwide, including timezone details, daylight saving time status, and formatted timestamps, supporting multiple time formats and timezone conversions.
Get the current time
Get the current time using multiple APIs. The first successful response will be returned.
GET
/
time
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
| latitude | number | Required | |
| longitude | number | Required |
Response
{
"type": "object",
"properties": {
"time": {
"type": "string",
"description": "The current time",
"example": "2020-01-01T00:00:00Z"
}
},
"required": [
"time"
]
}
Authorizations
Authorization
header
required
Authentication token in the format "Bearer <token>"
Path Parameters
latitude
number
required
longitude
number
required
Response
200 - application/json
time
string
required
The current time
Example: 2020-01-01T00:00:00Z
Try it out
Response
Click "Send Request" to see the response...