Searching for Datasets
Keyword Search
from foundry import Foundry
f = Foundry()
# Search by keyword
results = f.search("band gap")
results = f.search("crystal structure")
results = f.search("formation energy")Limit Results
results = f.search("band gap", limit=5)JSON Output
results = f.search("band gap", as_json=True)
for ds in results:
print(f"{ds['name']}: {ds['title']}")Browse the Catalog
Get by DOI
Search Results
Column
Description
Accessing Datasets
CLI Search
Tips
Broad vs. Specific
Check What's Available
Inspect Before Loading
Last updated
Was this helpful?