API key required. Sign up for an Ouro account and create an API key to get started.
/structure/cost
Calculate the estimated raw material cost per kg
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",
"org_id": "example_string",
"team_id": "example_string",
"filename": "example_string",
"visibility": "example_string"
}
};
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
This endpoint calculates the estimated raw material cost per kilogram for chemical compounds and materials. It helps researchers and engineers quickly assess whether a material is economically viable
Route views over time