Analyze crystal structures, predict material properties, and simulate XRD patterns via API
Crystal Explorer analyzes crystal structures from chemical compositions to predict material properties including band gap, density, crystal system, and space group. Simulate X-ray diffraction (XRD) patterns and assess thermodynamic stability — all through a single API call. Part of SciRouter's upcoming Materials Science suite.
The Materials Science API is currently in development. Join the waitlist to get early access when it launches.
/v1/materials/propertiesimport requests
API_KEY = "sk-sci-your-key-here"
url = "https://scirouter.ai/v1/materials/properties"
response = requests.post(url, json={
"composition": "LiFePO4"
}, headers={"Authorization": f"Bearer {API_KEY}"})
result = response.json()
print(f"Band gap: {result['band_gap_ev']:.2f} eV")
print(f"Crystal system: {result['crystal_system']}")
print(f"Space group: {result['space_group']}")
print(f"Density: {result['density_g_cm3']:.2f} g/cm³")Screening novel materials for target properties
Predicting electronic properties of new compositions
Validating synthesized crystal structures
High-throughput materials discovery pipelines