Skip to main content
GET
/
weatherdata
/
{weather_data_id}
Get Weather Data
curl --request GET \
  --url https://api.example.com/weatherdata/{weather_data_id}

GET /weatherdata/

Fetch the complete details of a weather data record, including the full hourly (or sub-hourly) weather arrays.

Notes

  • Requires a valid JWT (any role).
  • The weather_data_id path parameter is the workspace-scoped integer index.
  • Returns 404 if the weather data record does not exist or does not belong to the current workspace.
  • Unlike the list endpoint, this response includes the full weather data arrays (ghi, dhi, windSpeed, temperature, etc.).
  • See GET /weatherdata to list all records (metadata only).
  • See DELETE /weatherdata/{weather_data_id} to remove this record.