We are interested in detecting strongly lensed transients using time-series of images, which requires access not only to the nightly stream but also to past alert cutouts.
My questions are:
Will Lasair provide image cutouts (reference/visit/DI) for all ~10 million alerts per night?
Will Lasair store past alert cutouts (since the Prompt Products Database does not)? If yes, for how long
Will there be usage limits for individual users (e.g. maximum number of alert packets, bandwidth caps, or rate limits)?
Our plan is not to download all alerts, but to filter the nightly stream down to a much smaller candidate set. However, having access to past cutouts is critical for our science goals.
I am pleased to see that you intend to filter down the full stream, hopefully by quite a bit. Please note that one of the community resources is a watchlist of the Abell clusters which might be a good starting place to build your filter for strong lenses.
(1) Lasair provides image cutouts for all the alerts: target+reference+difference. You can fetch them with the Lasair API as follows
result = L.object(diaObjectId, lasair_added=True)
urls = result['lasairData']['imageUrls']
The list urls will be URLs pointing to 3N cutout FITS, for the N diaSources of that diaObject. For more information see the documentation
(2) Lasair will store the past cutouts for at least a month, perhaps more, then they will be deleted. The cutouts take a lot of storage. It means that the older URLs in the above list will not work.
(3) The Lasair API is throttled to 100 calls per hour to prevent abuse. See here. However you can ask to be in the power user group that allows 10,000 calls per hour.