Hi!
As of now the SearchAPI baseline endpoint does not offer temporal/perpendicular baseline constraining, nor does it offer additional keyword options beyond `output`, `reference`, and `processingLevel`.
However, the asf-search python search module supports this functionality, below is an example of how to constrain by a start and an end date!
```
import asf_search as asf
from datetime import datetime
reference = 'S1A_IW_SLC__1SSV_20150601T010209_20150601T010236_006173_00808F_20A0-SLC'
START = datetime(2014, 10, 28)
END = datetime(2015, 10, 28)
search_opts = asf.ASFSearchOptions(start=START, end=END)
stack = asf.stack_from_id(reference, opts=search_opts)
print(stack)
```
Technically, the asf-search python module allows using any regular search parameters to constrain final stack results as well. Filtering out by temporal/perpendicular baseline is largely up to the end user, but something
```
MAX_TEMPORAL = 5
MAX_PERPENDICULAR = 200
filteredStack = [product for product in stack if product.properties['temporalBaseline'] < MAX_TEMPORAL and product.properties['perpendicularBaseline'] < MAX_PERPENDICULAR]
```
More info can be found here:
https://docs.asf.alaska.edu/asf_search/searching/
Python examples are also available on the asf-search module github page:
https://github.com/asfadmin/Discovery-asf_search/tree/stable/examples