Rainbow.AI · Example Payload

Rainbow Ai Get Map Tile Example

WeatherPrecipitationForecastingNowcastRadarTilesGeospatial

Rainbow Ai Get Map Tile 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/map/tile/10/301/385?layer=precipitation&timestamp=2026-05-02T12:00:00Z",
    "headers": {
      "Ocp-Apim-Subscription-Key": "YOUR_API_KEY"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "image/png",
      "Cache-Control": "max-age=600"
    },
    "body": "<binary PNG image data - 256x256 precipitation map tile>"
  }
}