Lat lon point Run in API Explorer
Ask AI
The Weather API provides weather data for the specific point
GET
/weather/point/2/json
curl \
--request GET 'https://api.geoapi.me/weather/point/2/json?lat=42.0&lon=42.0' \
--header "X-Api-Key: $API_KEY"
Response examples (200)
{
"status": "OK",
"code": 200,
"content": {
"weather": [
{
"<pattern:YYYY-MM-DD>": [
{
"<pattern:HH:II>": {
"clouds": {
"total": {
"value": 76,
"unit": "%",
"localData": 1
},
"high": {
"value": 76,
"unit": "%",
"localData": 1
},
"middle": {
"value": 76,
"unit": "%",
"localData": 1
},
"low": {
"value": 76,
"unit": "%",
"localData": 1
},
"convective": {
"value": 76,
"unit": "%",
"localData": 1
},
"boundary": {
"value": 76,
"unit": "%",
"localData": 1
}
},
"reltiveHumidity": {
"value": 76,
"unit": "%"
},
"liftedIndex": {
"value": 7.41,
"unit": "index"
},
"isotherm": {
"value": 1134,
"unit": "m",
"temperature": "0 C"
},
"HPBL": {
"value": 1134,
"unit": "m"
},
"precipitation": {
"total": {
"value": 11.3,
"unit": "mm"
},
"convective": {
"value": 11.3,
"unit": "mm"
},
"probability": {
"value": 76,
"unit": "%"
}
},
"temperature": {
"isInversion": 1,
"surface": {
"value": 11,
"unit": "C",
"color": {
"background": "#ff9900",
"text": "#ffffff"
},
"localStation": "Salzburg Airport"
},
"min": {
"value": 11,
"unit": "C",
"color": {
"background": "#ff9900",
"text": "#ffffff"
}
},
"max": {
"value": 11,
"unit": "C",
"color": {
"background": "#ff9900",
"text": "#ffffff"
}
},
"felt": {
"value": 11,
"unit": "C",
"color": {
"background": "#ff9900",
"text": "#ffffff"
}
}
},
"wind": {
"speed": {
"value": 23,
"unit": "km/h"
},
"gust": {
"value": 23,
"unit": "km/h"
},
"direction": {
"value": 47,
"unit": "bearing",
"icon": 45
}
},
"pressure": {
"value": 1019,
"unit": "mb",
"level": "mean sea level"
},
"heatIndex": "1/2"
}
}
]
}
]
}
}
Response examples (400)
{
"code": 400,
"status": "error",
"message": "Latitude range error"
}
Response examples (401)
{
"code": 401,
"status": "error",
"message": "Latitude range error"
}
Response examples (503)
{
"code": 503,
"status": "error",
"message": "[Geo]: DB Driver loading failed"
}