Abstract API · Schema
ConvertTimeResponse
Time zone conversion result
AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping
Properties
| Name | Type | Description |
|---|---|---|
| base_location | string | Source location |
| base_datetime | string | Input date and time |
| base_timezone_name | string | Source IANA timezone name |
| base_timezone_abbreviation | string | Source timezone abbreviation |
| base_utc_offset | integer | Source UTC offset in hours |
| target_location | string | Target location |
| target_datetime | string | Converted date and time |
| target_timezone_name | string | Target IANA timezone name |
| target_timezone_abbreviation | string | Target timezone abbreviation |
| target_utc_offset | integer | Target UTC offset in hours |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ConvertTimeResponse",
"title": "ConvertTimeResponse",
"type": "object",
"description": "Time zone conversion result",
"properties": {
"base_location": {
"type": "string",
"description": "Source location",
"example": "London"
},
"base_datetime": {
"type": "string",
"description": "Input date and time",
"example": "2026-04-19 10:30:00"
},
"base_timezone_name": {
"type": "string",
"description": "Source IANA timezone name",
"example": "Europe/London"
},
"base_timezone_abbreviation": {
"type": "string",
"description": "Source timezone abbreviation",
"example": "BST"
},
"base_utc_offset": {
"type": "integer",
"description": "Source UTC offset in hours",
"example": 1
},
"target_location": {
"type": "string",
"description": "Target location",
"example": "Tokyo"
},
"target_datetime": {
"type": "string",
"description": "Converted date and time",
"example": "2026-04-19 18:30:00"
},
"target_timezone_name": {
"type": "string",
"description": "Target IANA timezone name",
"example": "Asia/Tokyo"
},
"target_timezone_abbreviation": {
"type": "string",
"description": "Target timezone abbreviation",
"example": "JST"
},
"target_utc_offset": {
"type": "integer",
"description": "Target UTC offset in hours",
"example": 9
}
}
}