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/H2_BURST_CAT3/segments?format=api&page=200
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=199",
    "results_count": 119313,
    "results_per_page": 20,
    "num_pages": 5966,
    "page_number": 200,
    "results": [
        {
            "start": 820258086,
            "stop": 820258250
        },
        {
            "start": 820258253,
            "stop": 820258443
        },
        {
            "start": 820258447,
            "stop": 820259618
        },
        {
            "start": 820259621,
            "stop": 820260228
        },
        {
            "start": 820260231,
            "stop": 820260355
        },
        {
            "start": 820260359,
            "stop": 820260516
        },
        {
            "start": 820260519,
            "stop": 820260579
        },
        {
            "start": 820260582,
            "stop": 820260802
        },
        {
            "start": 820260809,
            "stop": 820261188
        },
        {
            "start": 820261192,
            "stop": 820261313
        },
        {
            "start": 820261316,
            "stop": 820261707
        },
        {
            "start": 820261710,
            "stop": 820261734
        },
        {
            "start": 820261738,
            "stop": 820261821
        },
        {
            "start": 820261824,
            "stop": 820261848
        },
        {
            "start": 820261851,
            "stop": 820262379
        },
        {
            "start": 820262383,
            "stop": 820262385
        },
        {
            "start": 820262389,
            "stop": 820262757
        },
        {
            "start": 820262760,
            "stop": 820262860
        },
        {
            "start": 820262863,
            "stop": 820262869
        },
        {
            "start": 820262872,
            "stop": 820263554
        }
    ]
}