Ahh I just copied the output in my broswer. I promise it’s JSON though; I’m querying an API endpoint I created hahaha.
Here’s the actual JSON response:
{
"_embedded": {
"collection_currently": [
{
"id": "5f4ff12189a6a3a49d61d7f2",
"time": 1599074590,
"summary": "Clear",
"nearestStormDistance": 80,
"nearestStormBearing": 182,
"precipIntensity": 0,
"precipProbability": 0,
"temperature": 85.6,
"apparentTemperature": 85.6,
"dewPoint": 37.1,
"humidity": 0.18,
"pressure": 1016.2,
"windSpeed": 5.25,
"windGust": 6.48,
"windBearing": 3,
"cloudCover": 0.01,
"uvIndex": 8,
"visibility": 10,
"ozone": 277.8,
"formattedTime": "2020-09-02 12:23:10 (PDT)",
"_links": {
"self": {
"href": "http://192.168.0.98:8080/rest-service-0.0.1-SNAPSHOT/api/currently_collection/5f4ff12189a6a3a49d61d7f2"
},
"currently_collection": {
"href": "http://192.168.0.98:8080/rest-service-0.0.1-SNAPSHOT/api/currently_collection"
}
}
},
{
"id": "5f469c3011c084b8589041ff",
"time": 1598463022,
"summary": "Clear",
"nearestStormDistance": 52,
"nearestStormBearing": 331,
"precipIntensity": 0,
"precipProbability": 0,
"temperature": 67.35,
"apparentTemperature": 67.35,
"dewPoint": 42.23,
"humidity": 0.4,
"pressure": 1013.3,
"windSpeed": 3.7,
"windGust": 5.07,
"windBearing": 39,
"cloudCover": 0,
"uvIndex": 5,
"visibility": 10,
"ozone": 297.6,
"formattedTime": "2020-08-26 10:30:22 (PDT)",
"_links": {
"self": [
{
"href": "http://192.168.0.98:8080/rest-service-0.0.1-SNAPSHOT/api/currently_collection/5f469c3011c084b8589041ff"
},
{
"href": "http://192.168.0.98:8080/rest-service-0.0.1-SNAPSHOT/api/currently_collection/latest"
}
],
"currently_collection": {
"href": "http://192.168.0.98:8080/rest-service-0.0.1-SNAPSHOT/api/currently_collection"
}
}
}
]
},
"_links": {
"first": {
"href": "http://192.168.0.98:8080/rest-service-0.0.1-SNAPSHOT/api/currently_collection?page=0&size=4"
},
"self": {
"href": "http://192.168.0.98:8080/rest-service-0.0.1-SNAPSHOT/api/currently_collection"
},
"next": {
"href": "http://192.168.0.98:8080/rest-service-0.0.1-SNAPSHOT/api/currently_collection?page=1&size=4"
},
"last": {
"href": "http://192.168.0.98:8080/rest-service-0.0.1-SNAPSHOT/api/currently_collection?page=6&size=4"
}
},
"page": {
"size": 4,
"totalElements": 28,
"totalPages": 7,
"number": 0
}
}