Sentinel Hub process Api Returning Same image

Hi All,

Im making requests via the https://services.sentinel-hub.com/api/v1/process,

I’ve already sourced a list of available dates for the region using the https://services.sentinel-hub.com/api/v1/catalog/search

However when putting these dates into the datafilter i always get back the same image for every request no matter the dates

Regards

John.

Example request:

{
  "bounds": {
    "properties": {
      "crs": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
    },
    "geometry": {
      "type": "Polygon",
      "coordinates": [
        [
          [
            117.3707945813639,
            -30.97810597598637
          ],
          [
            117.3706275124775,
            -30.97823277970659
          ],
          [
            117.3695038707144,
            -30.98014890939395
          ],
          [
            117.369436546523,
            -30.98034309996423
          ],
          [
            117.3694389101722,
            -30.98095666832666
          ],
          [
            117.3694606201965,
            -30.9811551158258
          ],
          [
            117.3695289531834,
            -30.98122259410304
          ],
          [
            117.3697277945063,
            -30.9811859325276
          ],
          [
            117.3698531879393,
            -30.98111338829348
          ],
          [
            117.3701765512135,
            -30.98077860509765
          ],
          [
            117.370302013455,
            -30.9807241065567
          ],
          [
            117.3704800476746,
            -30.98072359611877
          ],
          [
            117.3705640376762,
            -30.98077749420498
          ],
          [
            117.3705694657439,
            -30.98082710603027
          ],
          [
            117.3704400742518,
            -30.98121998469135
          ],
          [
            117.3702736266174,
            -30.981509203059
          ],
          [
            117.3695115889487,
            -30.98215202946479
          ],
          [
            117.3694491695523,
            -30.98226048592733
          ],
          [
            117.3694476006815,
            -30.98321243386211
          ],
          [
            117.3694273803292,
            -30.98475996344263
          ],
          [
            117.366072043618,
            -30.9864748924708
          ],
          [
            117.3657377950167,
            -30.9867104413641
          ],
          [
            117.3636148697846,
            -30.99030765055023
          ],
          [
            117.3635475951559,
            -30.99051988400906
          ],
          [
            117.36367911519,
            -30.99067741893197
          ],
          [
            117.363820664189,
            -30.99071762448858
          ],
          [
            117.3658735091877,
            -30.99071182585016
          ],
          [
            117.3662928708024,
            -30.99081891508447
          ],
          [
            117.3767404051259,
            -30.99079337613707
          ],
          [
            117.3782330308841,
            -30.99082059487421
          ],
          [
            117.3786465814277,
            -30.99077877904826
          ],
          [
            117.3787928565402,
            -30.9906881187063
          ],
          [
            117.378860382724,
            -30.99054806190878
          ],
          [
            117.378835353342,
            -30.98421388429851
          ],
          [
            117.3787915366567,
            -30.98372676245305
          ],
          [
            117.3788328579685,
            -30.98358227080456
          ],
          [
            117.3788200971462,
            -30.98035201796604
          ],
          [
            117.3787717768236,
            -30.98004988379926
          ],
          [
            117.3785253699414,
            -30.97997390914831
          ],
          [
            117.3738132314295,
            -30.98011395406776
          ],
          [
            117.373792005021,
            -30.98004183018744
          ],
          [
            117.3738539256302,
            -30.97980704879037
          ],
          [
            117.3739954737248,
            -30.97850730356246
          ],
          [
            117.3739688178696,
            -30.97838556800489
          ],
          [
            117.373884687389,
            -30.97829557985942
          ],
          [
            117.3737011930564,
            -30.97823746018893
          ],
          [
            117.3721928278361,
            -30.97815158277654
          ],
          [
            117.3716273226337,
            -30.97815321069609
          ],
          [
            117.3710615381147,
            -30.97808265161217
          ],
          [
            117.3707945813639,
            -30.97810597598637
          ]
        ]
      ]
    }
  },
  "data": [
    {
      "type": "S2L1C",
      "datafilter": {
        "timeRange": {
          "from": "2019-03-05T00:00:00Z",
          "to": "2019-03-05T23:59:00Z"
        }
      }
    }
  ]
}

Resolved my own issue.

“datafilter” should be “dataFilter”

just the case sensitivity.

1 Like