📘

Need an API key?

Trial API keys are available if you want to try Streambatch. Contact us

Authentication

A valid API key must be included in the header every http request. A request sent from Python would look like this:

import requests
ndvi_request = {...}
response = requests.post('https://api.streambatch.io/async',
                         json=ndvi_request,
                         headers={'X-API-Key': "GkqEPt5awkEz7QDWdaztkAzMT"})
...