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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=100",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 101,
    "results": [
        {
            "start": 816921673,
            "stop": 816921676
        },
        {
            "start": 816921679,
            "stop": 816921735
        },
        {
            "start": 816921789,
            "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
        },
        {
            "start": 816923007,
            "stop": 816923033
        },
        {
            "start": 816923055,
            "stop": 816923096
        },
        {
            "start": 816923131,
            "stop": 816923286
        }
    ]
}