4mo
POST
/chemeleon/generate/composition
Generate crystal structures for target compositions
Parameters
ouro-route-id
in headerouro-route-org-id
in headerouro-route-team-id
in headerouro-action-id
in headerRequest body
factor
integerDefaults to 1Range: 1 to 20
Multiplication factor for the composition's stoichiometry
n_samples
integerDefaults to 4Range: 1 to 100
How many structures to generate
target_composition
stringRequiredTarget chemical composition (e.g., 'TiO2', 'LiMnO4')
const url = 'https://api.ouro.foundation/routes/mmoderwell/chemeleon/generate/composition';
const options = {
method: 'POST',
headers: {
'Authorization': 'ApiKey {your-ouro-api-key}',
'Content-Type': 'application/json'
}
};
const payload = {
"factor": 1,
"n_samples": 4,
"target_composition": "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));
Generate crystal structures for target compositions
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
3mo
1 reference
Loading compatible actions...
Loading comments...