MAST API Access
Programmatic interfaces allow discovery and access to JWST data through scripted queries, instead of using the regular web-based user interfaces. This affords a greater degree of complexity and customization in searches and retrievals. This mechanism enables one to craft searches that are both more comprehensive and more targeted in an effort to discover any and all data related to a particular object or location. The primary ways of performing these queries are through a MAST API or a Virtual Observatory service.
On this page
MAST API
While scripted queries can be highly customized and efficient, there are some circumstances where using the API is essential for searching and retrieving JWST data. These tend to be programs that produce very large numbers of data products (tens of thousands) per observation, which can time-out or overload the MAST Portal download basket. Examples include:
- Wide field slitless spectra (WFSS) configurations of NIRCam or NIRISS, which produce level-3 products for each extracted spectrum (of which there could be thousands).
- Multicolor imaging surveys which include many dither positions as well as many spatial tiles. These produce both large numbers of science exposures, as well as many guide star files because of the associated spacecraft maneuvers.
- Lengthy moving target observations, particularly if multiple instruments or configurations are used. Again, there may be many thousands of science files, along with many thousands of guide star files as the spacecraft tracks the target.
Other examples include queries with a richer set of metadata than is available with the Portal advanced search.
Auth.MAST Tokens
Python astroquery
Words in bold are GUI menus/
panels or data software packages;
bold italics are buttons in GUI
tools or package parameters.
- Large Downloads for downloading data from programs that would overload the Portal
- JWST SI Keyword Search for searches with rich metadata that are not available using the Portal advanced search
- JWST Duplication Checking, which provides methods and advice for preparing proposals that do not duplicate existing or planned programs
Mashup
Mashup Application Programming Interface (API) provides a way to access data stored in MAST through any programming language that supports calls to standard web services, including Unix shell scripts, Perl, and Python. It does this by translating customized URL requests into database queries, which allows the user to create scripts designed to assemble specific query parameters and to send those queries in batches. This includes all capabilities of the astroquery.mast package, but also the ability to perform cross-matching searches with various data catalogs, and table filtering based on specific columns. This comes at a cost of managing the cumbersome syntax of web service queries and some level of programming expertise.
For detailed service descriptions, instructions, and examples of this API in use with Python, please refer to the Mashup API page. The MAST API Tutorial also includes a Jupyter notebook-style example of a Python MAST data search and retrieval.
The article Using MAST APIs includes links to tutorials and Jupyter notebooks showing how to use scripts to access JWST data in MAST.
VO services
MAST implements various protocols of the Virtual Observatory (VO) including those for image, table, and spectral data access. As part of these protocols, MAST core services operate using the Common Archive Observation Model (CAOM). As a result, MAST data can be searched and retrieved by VO-aware applications.
The NASA Astronomical Virtual Observatories (NAVO) program aims to provide access to data stored in some of NASA’s largest archives by creating a standardized interface for submitting queries across multiple datasets. These archives include MAST along with the High-Energy Astrophysics Science Archive Research Center (HEASARC), the Infrared Science Archive (IRSA), and the NASA Extragalactic Database (NED).
Similar to the Mashup API, VO services also primarily function by translating customized URL requests into database queries. The 4 primary types of available queries follow:
- Simple Cone Search (SCS) – allows a user to search for observations around a specified set of coordinates within a given radius.
- Simple Image Access Protocol (SIAP) – provides query access to 2-dimensional images and 3-dimensional or greater data cubes.
- Simple Spectral Access Protocol (SSAP) – provides query access to 1-dimensional spectral data.
- Table Access Protocol (TAP) – allows a user to perform complex queries on data tables in the Astronomical Data Query Language.
SCS, SIAP, and SSAP queries all provide broad methods of data discovery within certain search parameters, while TAP is better suited to finding specific data as it supports more complex SQL-like queries.
More information on VO access to MAST holdings can be found here.