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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=99",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=97",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 98,
    "results": [
        {
            "start": 816921440,
            "stop": 816921574
        },
        {
            "start": 816921597,
            "stop": 816921605
        },
        {
            "start": 816921625,
            "stop": 816921654
        },
        {
            "start": 816921673,
            "stop": 816921676
        },
        {
            "start": 816921679,
            "stop": 816921735
        },
        {
            "start": 816921840,
            "stop": 816921850
        },
        {
            "start": 816921879,
            "stop": 816921902
        },
        {
            "start": 816921940,
            "stop": 816921945
        },
        {
            "start": 816921964,
            "stop": 816921965
        },
        {
            "start": 816921985,
            "stop": 816922005
        },
        {
            "start": 816922008,
            "stop": 816922039
        },
        {
            "start": 816922065,
            "stop": 816922089
        },
        {
            "start": 816922144,
            "stop": 816922224
        },
        {
            "start": 816922317,
            "stop": 816922321
        },
        {
            "start": 816922322,
            "stop": 816922522
        },
        {
            "start": 816922550,
            "stop": 816922641
        },
        {
            "start": 816922676,
            "stop": 816922777
        },
        {
            "start": 816922812,
            "stop": 816922815
        },
        {
            "start": 816922854,
            "stop": 816922861
        },
        {
            "start": 816922912,
            "stop": 816922954
        }
    ]
}