Examples
Scenario A - BVLOS Delivery Flight
Step 1 - Create a Flight Simulation
// Example Mission
const response = await fetch('/check-my-flight/v1/cmf3', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"performance_parameters": [
{
"name": "text",
"type": "text",
"unit": "text",
"value": 0
}
],
"limit_parameters": [
{
"name": "text",
"type": "text",
"unit": "text",
"altitude_type": "text",
"altitude_unit": "text"
}
],
"route": [
{
"latitude": 0,
"longitude": 0,
"altitude": 0,
"altitude_type": "AGL"
}
],
"take_off": "2024-10-22T08:51:04.497Z",
"battery_soc": 0
}),
});
const data = await response.json();Last updated
Was this helpful?