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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=2223",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=2221",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 2222,
    "results": [
        {
            "start": 872973906,
            "stop": 872973924
        },
        {
            "start": 872973930,
            "stop": 872973952
        },
        {
            "start": 872973958,
            "stop": 872974003
        },
        {
            "start": 872974009,
            "stop": 872974025
        },
        {
            "start": 872974031,
            "stop": 872974043
        },
        {
            "start": 872974049,
            "stop": 872974108
        },
        {
            "start": 872974114,
            "stop": 872974191
        },
        {
            "start": 872974209,
            "stop": 872974231
        },
        {
            "start": 872974237,
            "stop": 872974298
        },
        {
            "start": 872974304,
            "stop": 872974378
        },
        {
            "start": 872974400,
            "stop": 872974409
        },
        {
            "start": 872974426,
            "stop": 872974498
        },
        {
            "start": 872974503,
            "stop": 872974552
        },
        {
            "start": 872974558,
            "stop": 872974584
        },
        {
            "start": 872974601,
            "stop": 872974660
        },
        {
            "start": 872974680,
            "stop": 872974737
        },
        {
            "start": 872974754,
            "stop": 872974759
        },
        {
            "start": 872974778,
            "stop": 872974782
        },
        {
            "start": 872974819,
            "stop": 872974823
        },
        {
            "start": 872974840,
            "stop": 872974850
        }
    ]
}