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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT2/segments?format=api&page=13",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT2/segments?format=api&page=11",
    "results_count": 17534,
    "results_per_page": 20,
    "num_pages": 877,
    "page_number": 12,
    "results": [
        {
            "start": 815791350,
            "stop": 815791362
        },
        {
            "start": 815791888,
            "stop": 815798490
        },
        {
            "start": 815798550,
            "stop": 815799090
        },
        {
            "start": 815799150,
            "stop": 815799630
        },
        {
            "start": 815799690,
            "stop": 815804373
        },
        {
            "start": 815804376,
            "stop": 815805750
        },
        {
            "start": 815805810,
            "stop": 815805959
        },
        {
            "start": 815805962,
            "stop": 815807688
        },
        {
            "start": 815807691,
            "stop": 815809028
        },
        {
            "start": 815813090,
            "stop": 815820239
        },
        {
            "start": 815821082,
            "stop": 815838188
        },
        {
            "start": 815838191,
            "stop": 815838631
        },
        {
            "start": 815838633,
            "stop": 815839517
        },
        {
            "start": 815839520,
            "stop": 815842050
        },
        {
            "start": 815842110,
            "stop": 815844163
        },
        {
            "start": 815844166,
            "stop": 815845770
        },
        {
            "start": 815845830,
            "stop": 815846819
        },
        {
            "start": 815846821,
            "stop": 815848808
        },
        {
            "start": 815848811,
            "stop": 815849293
        },
        {
            "start": 815849294,
            "stop": 815852124
        }
    ]
}