curl --request POST \
--url http://pinpoint.devops.arabiaweather.com/text \
--header 'Content-Type: application/json' \
--data '{}'{
"locations": [
[
{
"level": "info",
"created_at": 1742568212,
"category": "consumer/long_term_status",
"text": {
"ar": "<div><b>التوقعات الجوية من 21 آذار </b><b style=\"background-color: transparent;\">إلى 20 نيسان 2025</b></div>",
"en": ""
},
"daily_parts": []
}
]
]
}POST version of the text forecast endpoint, allowing for retrieving text forecasts for multiple locations at once
curl --request POST \
--url http://pinpoint.devops.arabiaweather.com/text \
--header 'Content-Type: application/json' \
--data '{}'{
"locations": [
[
{
"level": "info",
"created_at": 1742568212,
"category": "consumer/long_term_status",
"text": {
"ar": "<div><b>التوقعات الجوية من 21 آذار </b><b style=\"background-color: transparent;\">إلى 20 نيسان 2025</b></div>",
"en": ""
},
"daily_parts": []
}
]
]
}The body is of type object.
Text forecast data for multiple locations
Show child attributes