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=123
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=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=122",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 123,
    "results": [
        {
            "start": 816971592,
            "stop": 816971604
        },
        {
            "start": 816971639,
            "stop": 816971650
        },
        {
            "start": 816971727,
            "stop": 816971820
        },
        {
            "start": 816971842,
            "stop": 816971850
        },
        {
            "start": 816971872,
            "stop": 816971904
        },
        {
            "start": 816971925,
            "stop": 816971982
        },
        {
            "start": 816972016,
            "stop": 816972060
        },
        {
            "start": 816972104,
            "stop": 816972141
        },
        {
            "start": 816972190,
            "stop": 816972195
        },
        {
            "start": 816972224,
            "stop": 816972226
        },
        {
            "start": 816972312,
            "stop": 816972321
        },
        {
            "start": 816972357,
            "stop": 816972361
        },
        {
            "start": 816972393,
            "stop": 816972430
        },
        {
            "start": 816972465,
            "stop": 816972483
        },
        {
            "start": 816972504,
            "stop": 816972515
        },
        {
            "start": 816972600,
            "stop": 816972628
        },
        {
            "start": 816972656,
            "stop": 816972787
        },
        {
            "start": 816972806,
            "stop": 816972831
        },
        {
            "start": 816972856,
            "stop": 816972875
        },
        {
            "start": 816972896,
            "stop": 816972914
        }
    ]
}