Abstract API · Schema
CurrentTimeResponse
Current time and timezone data for a location
AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping
Properties
| Name | Type | Description |
|---|---|---|
| datetime | string | Current date and time in the target timezone |
| timezone_name | string | IANA timezone name |
| timezone_location | string | Human-readable location description |
| timezone_abbreviation | string | Timezone abbreviation |
| gmt_offset | integer | GMT/UTC offset in hours |
| is_dst | boolean | Whether daylight saving time is active |
| requested_location | string | The input location string |
| latitude | number | Latitude of the location |
| longitude | number | Longitude of the location |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CurrentTimeResponse",
"title": "CurrentTimeResponse",
"type": "object",
"description": "Current time and timezone data for a location",
"properties": {
"datetime": {
"type": "string",
"description": "Current date and time in the target timezone",
"example": "2026-04-19 10:30:00"
},
"timezone_name": {
"type": "string",
"description": "IANA timezone name",
"example": "America/New_York"
},
"timezone_location": {
"type": "string",
"description": "Human-readable location description",
"example": "New York, United States"
},
"timezone_abbreviation": {
"type": "string",
"description": "Timezone abbreviation",
"example": "EDT"
},
"gmt_offset": {
"type": "integer",
"description": "GMT/UTC offset in hours",
"example": -4
},
"is_dst": {
"type": "boolean",
"description": "Whether daylight saving time is active",
"example": true
},
"requested_location": {
"type": "string",
"description": "The input location string",
"example": "New York City"
},
"latitude": {
"type": "number",
"format": "double",
"description": "Latitude of the location",
"example": 40.7128
},
"longitude": {
"type": "number",
"format": "double",
"description": "Longitude of the location",
"example": -74.006
}
}
}