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/S5/timelines/H1_HW_STOCH/segments?format=api
{
"next": null,
"previous": null,
"results_count": 4,
"results_per_page": 20,
"num_pages": 1,
"page_number": 1,
"results": [
{
"start": 822198733,
"stop": 822199839
},
{
"start": 822200172,
"stop": 822202224
},
{
"start": 838748736,
"stop": 838750794
},
{
"start": 838753918,
"stop": 838766351
}
]
}