This page contains a collection of pre-generated URLs that will return data through the Exoplanet Archive's Table Access Protocol (TAP) service and Application Programming Interface (API). The URLs can be copied and pasted into a web browser (for https:// queries) or a command-line interface (for wget queries). Note that you must have wget installed for wget queries.
Note: The default file format for all of the queries on this page is IPAC table format. To change formats, refer to the instructions in the File Format section of the API User Guide.
To request a specific pre-built query for this page, please submit a Helpdesk ticket.
| To Do This... | Copy This... |
|---|---|
| All planetary solutions for confirmed planets with all columns from the Planetary Systems Table. Output is in comma separated (csv) format. | https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+ps&format=csv |
wget "https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+ps&format=csv" -O "confirmed_planets.csv" |
|
| Return a single planetary solution for confirmed planets with all columns from the Planetary Systems Composite Parameters Table. Output is in json format. | https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+pscomppars&format=json |
wget "https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+pscomppars&format=json" -O "confirmed_planets.json" |
|
| Return a list of stars known to host exoplanets. Output is a fixed-column width (IPAC format) and sorted in ascending order. | https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+distinct+hostname+from+ps+order+by+hostname+asc&format=ipac |
wget "https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+distinct+hostname+from+ps+order+by+hostname+asc&format=ipac" -O "stars_hosting_exoplanets.tbl" |
|
| Find the default planetary solution for all confirmed planets discovered by Kepler. Output is in VOTable format in ascending order of planet name. | https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+ps+where+default_flag+=+1+and+disc_facility+LIKE+'Kepler'+order+by+pl_name+asc&format=votable |
wget "https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+ps+where+default_flag+=+1+and+disc_facility+LIKE+'Kepler'+order+by+pl_name+asc+&format=votable" -O "confirmed_kepler_field.xml" |
|
| Return all columns for the default solution in the Planetary Systems Table for confirmed planets that transit their host stars. Output is in tab-separated format, sorted alphabetically by the host star name. | https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+ps+where+tran_flag=1+and+default_flag=1+order+by+pl_name&format=tsv |
wget "https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+ps+where+tran_flag=1+and+default_flag=1+order+by+pl_name&format=tsv" -O "planets_transit_host.tbl" |
|
| Return a current list of non-confirmed Kepler planet candidates from the KOI Cumulative list. | https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+cumulative+where+koi_disposition+like+'CANDIDATE'&format=ipac |
wget "https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+cumulative+where+koi_disposition+like+'CANDIDATE'&format=ipac" -O "nonconf_planet_cand.tbl" |
|
| Return a list of K2 targets from the K2 Campaign 5 (E). | https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+k2targets+where+k2_campaign_str='E'&format=ipac |
wget "https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+k2targets+where+k2_campaign_str='E'&format=ipac" -O "k2_targets_c5.tbl" |
|
| Return all default parameters for one particular KOI in the KOI Cumulative table. | https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+cumulative+where+kepoi_name='K00007.01'+OR+kepoi_name='K00742.01'&format=ipac |
wget "https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+cumulative+where+kepoi_name='K00007.01'+OR+kepoi_name='K00742.01'&format=ipac" -O "koi_OR.tbl" |
|
| Find Kepler planetary candidates from the KOI Cumulative Table smaller than 2Re with equilibrium temperatures between 180–303K. | https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+cumulative+where+koi_prad<2+and+koi_teq>180+and+koi_teq<303+and+koi_disposition+like+'CANDIDATE'&format=ipac |
wget "https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+cumulative+where+koi_prad<2+and+koi_teq>180+and+koi_teq<303+and+koi_disposition+like+'CANDIDATE'&format=ipac" -O "koi_teff_180-303.tbl" |
|
| Return a list of microlensing planets from the Planetary Systems Composite Parameters table where the number of photometric time series in the archive is non-zero. | https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+pl_name,st_nphot+from+pscomppars+where+discoverymethod+like+'%Micro%'+and+st_nphot>0&format=tsv |
wget "https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+pl_name,st_nphot+from+pscomppars+where+discoverymethod+like+'%Micro%'+and+st_nphot>0&format=tsv" -O "micro_ts.tbl" |
|
| Return all parameters from Planetary Systems Composite Parameters Table for confirmed planets discovered by TESS. Output is in JSON, formatted and sorted in descending order by orbital period. | https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+pscomppars+where+disc_facility+like+'%TESS%'+order+by+pl_orbper+desc&format=json |
wget "https://exoplanetarchive.ipac.caltech.edu/TAP/sync?query=select+*+from+pscomppars+where+disc_facility+like+'%TESS%'+order+by+pl_orbper+desc&format=json" -O "TESS_planes.json" |
Last updated: 25 February 2026