API key required. Sign up for an Ouro account and create an API key to get started.
/structure/relax
Relax a material structure
Force convergence (eV/Å)
Maximum optimisation steps
const url = 'https://api.ouro.foundation/routes/hermes/structure/relax'; 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" }, "fmax": 0.03, "max_steps": 400 }; 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