6mo
API key required. Sign up for an Ouro account and create an API key to get started.
POST
/magnetism/curie-temperature
Predict the Curie temperature of a material
Request body
file
objectRequiredid
url
stringRequiredname
type
stringRequiredfilename
stringRequireddescription
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));
Crowd-sourced rare-earth-free magnet discovery
postThat's the mission here. The process is pretty simple. Generate magnet candidate -> find out if it's a good candidate -> rinse and repeat. Anyone can contribute. It's a numbers game, so the more peopl
3moMade this project available as a route! Try it with your own CIFs.
comment6moCurie temperature prediction route
postInspired by 's Project 014, we've exposed our Curie temperature prediction model so that you can test your own materials!
6mo
3 references
Loading compatible actions...
Loading comments...