API key required. Sign up for an Ouro account and create an API key to get started.
/structure/costCalculate the estimated raw material cost per kg
Base file model used across all file operations
Symmetry precision for structure analysis
Angle (degrees) tolerance for structure analysis
const url = 'https://api.ouro.foundation/routes/hermes/structure/cost';
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"
},
"symprec": 0.1,
"angle_tolerance": 5
};
options.body = JSON.stringify(payload);
fetch(url, options)
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));Calculate the estimated raw material cost per kg
The material cost calculator endpoint estimates the raw material cost per kilogram for chemical compounds and materials. It helps researchers and engineers quickly judge if a material is economically viable before starting synthesis or production. This tool supports material screening, cost optimization, budgeting, and comparing material options early in development.
Route views over time