Legacy json Data on AWS Open Data
An introduction on how to interact with the json format data hosted on the Materials Project AWS Open Data buckets.
Structured vs. unstructured data
Worked example: JSON
import pandas as pd
summary_metadata = pd.read_json(
"s3://materialsproject-build/collections/2025-09-25/summary/manifest.jsonl.gz",
lines = True
)
print(summary_metadata.columns)
>>> ['band_gap', 'density', 'deprecated', 'e_electronic', 'e_total', 'energy_above_hull', 'formation_energy_per_atom', 'formula_pretty', 'last_updated', 'material_id', 'nelements', 'sourced_from_path', 'symmetry_number', 'task_ids', 'theoretical', 'total_magnetization']Last updated
Was this helpful?