API key required. Sign up for an Ouro account and create an API key to get started.
/structure/supercell
Create a supercell from a material
2x2x2
3x3x3
4x4x4
Predefined supercell size option
Symmetry precision for structure analysis
Angle tolerance for symmetry finding in degrees (°)
Whether to preserve symmetry operations in supercell
const url = 'https://api.ouro.foundation/routes/hermes/structure/supercell'; const options = { method: 'POST', headers: { 'Authorization': 'ApiKey {your-ouro-api-key}', 'Content-Type': 'application/json' } }; const payload = { "file": { "url": "example_string", "type": "example_string", "filename": "example_string" }, "size": "2x2x2", "symprec": 0.001, "angle_tolerance": 5, "preserve_symmetry": true }; options.body = JSON.stringify(payload); fetch(url, options) .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error('Error:', error));
Last week we introduced a few new routes to the Materials Science API from . This work is part of a broader effort to create a suite of tools that eventually can be commanded by an AI agent for automa
Route views over time