time-zones
time-zones
Page 2 of 3.
- Europe/Rome CET
- Europe/Lisbon WET
- Europe/Athens EET
- Europe/Stockholm CET
- Europe/Oslo CET
- Europe/Helsinki EET
- Europe/Copenhagen CET
- Atlantic/Reykjavik GMT
- Europe/Warsaw CET
- Europe/Zurich CET
- Europe/Vienna CET
- Europe/Prague CET
- Europe/Budapest CET
- Europe/Bucharest EET
- Europe/Kiev EET
- Europe/Istanbul TRT
- Europe/Moscow MSK
- Asia/Dubai GST
- Asia/Riyadh AST
- Asia/Jerusalem IST
- Asia/Kolkata IST
- Asia/Dhaka BST
- Asia/Karachi PKT
- Asia/Bangkok ICT
-
Europe/Rome
CET
-
Europe/Lisbon
WET
-
Europe/Athens
EET
-
Europe/Stockholm
CET
-
Europe/Oslo
CET
-
Europe/Helsinki
EET
-
Europe/Copenhagen
CET
-
Atlantic/Reykjavik
GMT
-
Europe/Warsaw
CET
-
Europe/Zurich
CET
-
Europe/Vienna
CET
-
Europe/Prague
CET
-
Europe/Budapest
CET
-
Europe/Bucharest
EET
-
Europe/Kiev
EET
-
Europe/Istanbul
TRT
-
Europe/Moscow
MSK
-
Asia/Dubai
GST
-
Asia/Riyadh
AST
-
Asia/Jerusalem
IST
-
Asia/Kolkata
IST
-
Asia/Dhaka
BST
-
Asia/Karachi
PKT
-
Asia/Bangkok
ICT
Europe/Rome
CET
Europe/Lisbon
WET
Europe/Athens
EET
Europe/Stockholm
CET
Europe/Oslo
CET
Europe/Helsinki
EET
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/time-zones?limit=25"const res = await fetch(
"https://example-data.com/api/v1/time-zones?limit=25"
);
const { data, meta } = await res.json();import type { TimeZone, ListEnvelope } from "https://example-data.com/types/time-zones.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/time-zones?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<TimeZone>;import requests
res = requests.get(
"https://example-data.com/api/v1/time-zones",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 25,
"name": "Europe/Rome",
"offsetMinutes": 60,
"abbreviation": "CET",
"countryAlpha2": "IT"
},
{
"id": 26,
"name": "Europe/Lisbon",
"offsetMinutes": 0,
"abbreviation": "WET",
"countryAlpha2": "PT"
},
{
"id": 27,
"name": "Europe/Athens",
"offsetMinutes": 120,
"abbreviation": "EET",
"countryAlpha2": "GR"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 66,
"totalPages": 3
},
"links": {
"self": "/api/v1/time-zones?page=2",
"next": "/api/v1/time-zones?page=3",
"prev": "/api/v1/time-zones?page=1"
}
}