Nasa: Get Exoplanet Data
Nasa via Parse · government_public
Query the NASA Exoplanet Archive database using TAP (Table Access Protocol) with ADQL queries. Returns results wrapped in {results: [...]}. Note: SQL LIMIT keyword is not supported; use ADQL TOP syntax instead (e.g. 'select top 10 * from ps'). Access NASA's open data APIs including APOD, NEO asteroids, EPIC Earth imagery, InSight Mars weather, NASA Image Library, Exoplanet Archive, and EONET natural events. Fulfilled by Parse from api.nasa.gov.
- api-nasa-gov
- government-public
- maps-geo
- nasa
- parse
- platform-key
- weather
Price and execution
- Price
- $0.02 USD credits / call
- Trust tier
- Verified
- Execution
- Managed call
- Capability group
- government_public
Interface snapshot
- Protocol
- HTTP operation
- Operation
- GET /scraper/6db36254-5228-41a6-82a1-a7102cd098e8/get_exoplanet_data
- Interface artifact
- sha256:f58d8a9079a78f08e6012b84d9f477f2021459807b93880d9adb259943cecec4
- Manifest digest
- sha256:4d8a51277e6c4c2227864d38947e9a88be7380014f8e2b94b0231cafed30b245
Request fields
- query (string): Full ADQL query string (e.g. 'select top 10 pl_name,hostname from ps where disc_year > 2020'). If not provided, constructs a query from table and where params. LIMIT keyword is not supported; use TOP instead.
- table (string): Table name to query when no full query is provided. Default: 'ps' (planetary systems).
- where (string): WHERE clause for filtering when no full query is provided (e.g. "pl_name like '%Kepler%'").
Example queries
- {"query":"select top 5 pl_name,hostname,disc_year from ps where disc_year > 2020","table":"ps","where":"pl_name like '%Kepler-22%'"}