API key required. Sign up for an Ouro account and create an API key to get started.
/structure/relax-animation
Relax a material structure and return an animation
Force convergence (eV/Å)
Maximum optimization steps
Relax a material structure and return an animation
const url = 'https://api.ouro.foundation/routes/hermes/structure/relax-animation';
const options = {
method: 'POST',
headers: {
'Authorization': 'ApiKey {your-ouro-api-key}',
'Content-Type': 'application/json'
}
};
const payload = {
"file": {
"url": "example_string",
"type": "example_string",
"org_id": "example_string",
"team_id": "example_string",
"filename": "example_string",
"visibility": "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));
Route views over time