Return the segments for a given timeline for a run.

Query parameters:

  • start=<int>: Initial GPS time of the desired GPS interval.
  • stop=<int>: Final GPS time of the desired GPS interval.
  • compact: Return a list of segment [start, stop] list.
  • pagesize=<int>: Number of results to return per page.
GET /api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=56
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=57",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=55",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 56,
    "results": [
        {
            "start": 850899547,
            "stop": 850899691
        },
        {
            "start": 850924795,
            "stop": 850924930
        },
        {
            "start": 850931203,
            "stop": 850931340
        },
        {
            "start": 850955627,
            "stop": 850955763
        },
        {
            "start": 850979675,
            "stop": 850979802
        },
        {
            "start": 851044787,
            "stop": 851044915
        },
        {
            "start": 851092971,
            "stop": 851093180
        },
        {
            "start": 851122891,
            "stop": 851123027
        },
        {
            "start": 851143781,
            "stop": 851143916
        },
        {
            "start": 851379982,
            "stop": 851380126
        },
        {
            "start": 851475940,
            "stop": 851476076
        },
        {
            "start": 851525732,
            "stop": 851525868
        },
        {
            "start": 851533796,
            "stop": 851533940
        },
        {
            "start": 851545715,
            "stop": 851545843
        },
        {
            "start": 851579396,
            "stop": 851579531
        },
        {
            "start": 851601179,
            "stop": 851601307
        },
        {
            "start": 851630979,
            "stop": 851631107
        },
        {
            "start": 851643132,
            "stop": 851643268
        },
        {
            "start": 851665348,
            "stop": 851665492
        },
        {
            "start": 851691821,
            "stop": 851691956
        }
    ]
}