2mo
POST
/matterviz/trajectory
Interactive trajectory explorer with MatterViz
Parameters
ouro-route-id
in headerouro-route-org-id
in headerouro-route-team-id
in headerouro-action-id
in headerRequest body
fps
integerDefaults to 10Range: 1 to 120
Frames per second for playback
file
objectRequiredid
url
stringRequiredname
type
stringRequiredorg_id
stringRequiredteam_id
stringRequiredfilename
stringRequiredvisibility
stringRequireddescription
Trajectory file
auto_play
booleanDefaults to trueAuto-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
How far we've come! We have that now:
comment11d
1 reference
Loading compatible actions...
Loading comments...