Run Segment List
Return the segments for a given timeline for a run.
Query parameters:
start
: Initial GPS time of the desired GPS interval.stop
: Final GPS time of the desired GPS interval.compact
: Return a list of segment [start, stop] list.
GET /api/v2/runs/O1/timelines/H1_NO_STOCH_HW_INJ/segments?format=api
{
"next": null,
"previous": null,
"results_count": 2,
"results_per_page": 20,
"num_pages": 1,
"page_number": 1,
"results": [
{
"start": 1126051217,
"stop": 1129404545
},
{
"start": 1129404546,
"stop": 1137254417
}
]
}