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"
  ]
}
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"
  ]
}

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

Don't have a key? Sign up to get one for free.

Response

Click "Send Request" to see the response...