Rainbow.AI · Example Payload

Rainbow Ai Get Nowcast Example

WeatherPrecipitationForecastingNowcastRadarTilesGeospatial

Rainbow Ai Get Nowcast Example is an example object payload from Rainbow.AI, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.rainbow.ai/v1/weather/nowcast?lat=40.7128&lon=-74.0060&timezone=America/New_York",
    "headers": {
      "Ocp-Apim-Subscription-Key": "YOUR_API_KEY"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "location": {
        "lat": 40.7128,
        "lon": -74.0060
      },
      "forecasts": [
        {
          "timestamp": "2026-05-02T12:00:00-04:00",
          "precipitation_type": "rain",
          "precipitation_intensity": 2.5,
          "probability": 0.87
        },
        {
          "timestamp": "2026-05-02T12:01:00-04:00",
          "precipitation_type": "rain",
          "precipitation_intensity": 2.8,
          "probability": 0.89
        },
        {
          "timestamp": "2026-05-02T12:02:00-04:00",
          "precipitation_type": "rain",
          "precipitation_intensity": 3.1,
          "probability": 0.91
        }
      ],
      "updated_at": "2026-05-02T11:50:00Z"
    }
  }
}