FTS2 Endpoints
Authorizations
Body
take_offstring · date-timeRequired
battery_socnumber · max: 1Required
metadataany ofOptional
objectOptional
nullOptional
Responses
201
Successful Response
application/json
422
Validation Error
application/json
post
POST /flight-trajectory/v1/fts2 HTTP/1.1
Host:
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 581
{
"battery_soc": 0.958,
"metadata": {
"custom_fields": "custom_values"
},
"performance_parameters": [
{
"name": "cruise_speed",
"type": "EAS",
"unit": "m/s",
"value": 30
},
{
"name": "max_speed",
"type": "EAS",
"unit": "m/s",
"value": 35
},
{
"name": "rate_of_climb",
"type": "TAS",
"unit": "m/s",
"value": 5
},
{
"name": "rate_of_descent",
"type": "TAS",
"unit": "m/s",
"value": 5
},
{
"name": "endurance",
"unit": "s",
"value": 3600
}
],
"route": [
{
"altitude": 100,
"altitude_type": "AGL",
"latitude": 52.52,
"longitude": 13.404
},
{
"altitude": 100,
"altitude_type": "AGL",
"latitude": 52.525,
"longitude": 13.405
}
],
"take_off": "2024-12-04T13:00:00+00:00"
}
{
"simulation_id": "text"
}
Authorizations
Path parameters
simulation_idstringRequired
Query parameters
response_model_exclude_noneanyOptionalDefault:
true
Responses
200
Successful Response
application/json
Responseany of
or
stringOptional
422
Validation Error
application/json
get
GET /flight-trajectory/v1/fts2/{simulation_id} HTTP/1.1
Host:
x-api-key: YOUR_API_KEY
Accept: */*
{
"simulation_id": "text",
"simulation_request_time": "2025-07-05T05:51:08.146Z",
"route_distance": 1,
"zero_wind_flight_time": 1,
"take_off_time": "2025-07-05T05:51:08.146Z",
"flight_time": 1,
"landing_time": "2025-07-05T05:51:08.146Z",
"soc_at_take_off_percent": 1,
"soc_at_landing_percent": 1,
"endurance_at_take_off": 1,
"endurance_at_landing": 1,
"elevation_at_take_off": 1,
"elevation_at_landing": 1,
"metadata": {},
"segments": [
{
"latitude": 1,
"longitude": 1,
"altitude": 1,
"timeframe": "text",
"status": "nominal",
"speed_gs": {
"value": 1,
"unit": "text"
},
"speed_eas": {
"value": 1,
"unit": "text"
},
"weather_parameter": [
{
"name": "text",
"value": 1,
"unit": "text"
}
]
}
]
}
Last updated
Was this helpful?