/matterviz/trajectory
Interactive trajectory explorer with MatterViz
Range: 1 to 120
Frames per second for playback
Trajectory file
Auto-play trajectory if supported
const url = 'https://api.ouro.foundation/routes/mmoderwell/matterviz/trajectory';
const options = {
method: 'POST',
headers: {
'Authorization': 'ApiKey {your-ouro-api-key}',
'Content-Type': 'application/json'
}
};
const payload = {
"fps": 10,
"file": {
"url": "example_string",
"type": "example_string",
"org_id": "example_string",
"team_id": "example_string",
"filename": "example_string",
"visibility": "example_string"
},
"auto_play": true
};
options.body = JSON.stringify(payload);
fetch(url, options)
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
Interactive trajectory explorer with MatterViz