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 Schema
{
"type": "object",
"properties": {
"time": {
"type": "string",
"description": "The current time",
"example": "2020-01-01T00:00:00Z"
}
},
"required": [
"time"
]
}
curl --request GET \
--url "https://www.apikiss.com/api/v1/time?latitude=55.6761&longitude=12.5683" \
--header 'Authorization: Bearer <token>'
{
"type": "object",
"properties": {
"time": {
"type": "string",
"description": "The current time",
"example": "2020-01-01T00:00:00Z"
}
},
"required": [
"time"
]
}
Response
Click "Send Request" to see the response...
Authorizations
Authorization
header
required
Authentication token in the format "Bearer <token>"