Loading...
API key required. Sign up for an Ouro account and create an API key to get started.
/magnetism/curie-temperature
Predict the Curie temperature of a material
const url = 'https://api.ouro.foundation/routes/hermes/magnetism/curie-temperature';
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"
}
};
options.body = JSON.stringify(payload);
fetch(url, options)
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
Predict the Curie temperature of a material
How this route is connected to other assets
Made this project available as a route! Try it with your own CIFs.
Inspired by 's Project 014, we've exposed our Curie temperature prediction model so that you can test your own materials!
Discover other routes like this one
Create a recap post from the posts in a team
Create a supercell from a material
Calculate the energy above the convex hull (eV/atom) of a material