Hi Team , Am using the below curl command to get the data from windy api , but i am getting different data for mclouds,pressure,ptype,temp,rh
For example , if i run the below command i have got some response(a) and after 10 seconds i run the same command i have got some response(b). Response a and b needs to same but if i compare the both the response it was different .
May I know why it is happening like this ?
curl command :curl --location 'https://api.windy.com/api/point-forecast/v2'
--header 'Content-Type: application/json'
--data '{
"lat": 17.433497,
"lon": 78.545454,
"model": "gfs",
"parameters": ["mclouds", "pressure", "ptype", "temp","rh"],
"levels": ["surface"],
"key": ""
}'