get https://api.tomorrow.io/v4/timelines
Recipes
Build Your Own Weather App With One Call
Open Recipe
Periodically Log Realtime Weather for Data Science and Climatology
Open Recipe
Log in to see full request history
Response
xxxxxxxxxx
curl --request GET \
--url 'https://api.tomorrow.io/v4/timelines?location=42.3478%2C%20-71.0466&fields=temperature&units=metric×teps=1h&startTime=now&endTime=nowPlus6h' \
--compressed \
--header 'Accept-Encoding: gzip' \
--header 'accept: application/json'
xxxxxxxxxx
24{
"data": {
"timelines":[{
"timestep": "5m",
"startTime": "2020-05-10T06:49:34+0000",
"endTime": "2020-05-10T08:49:34+0000",
"intervals": [{
"startTime": "2020-05-10T06:49:34+0000",
"values": {
"precipitationIntensity": 2,
"mepIndex": 300,
}
},
"...",
{
"startTime": "2020-05-10T07:49:34+0000",
"values": {
"precipitationIntensity": 2,
}
}
]
}]
}
}