Get weather forecast
curl --request GET \
--url https://my.propops.app/api/weather \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Operation completed successfully",
"data": [
{
"date": "2023-12-25",
"temperature_max": 123,
"temperature_min": 123,
"weather_code": 123,
"precipitation_sum": 123
}
],
"cached": false
}Weather
Get weather forecast
Returns weather forecast data for a given location and date range via the Open-Meteo integration. Results are cached for one hour.
Required permission: api.calendar.weather.read
GET
/
api
/
weather
Get weather forecast
curl --request GET \
--url https://my.propops.app/api/weather \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Operation completed successfully",
"data": [
{
"date": "2023-12-25",
"temperature_max": 123,
"temperature_min": 123,
"weather_code": 123,
"precipitation_sum": 123
}
],
"cached": false
}Documentation Index
Fetch the complete documentation index at: https://help.propops.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
All API requests must include a valid Bearer token in the Authorization header.
Tokens are 64-character SHA-256 session hashes issued by the PropOps authentication system.
Example:
Authorization: Bearer a1b2c3d4e5f6...Query Parameters
Example:
51.5074
Example:
-0.1278
Example:
"2026-04-06"
Example:
"2026-04-12"
⌘I