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/S6/timelines/L1_CBCHIGH_CAT3/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/S6/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=122",
    "results_count": 298986,
    "results_per_page": 20,
    "num_pages": 14950,
    "page_number": 123,
    "results": [
        {
            "start": 932654262,
            "stop": 932654297
        },
        {
            "start": 932654328,
            "stop": 932654334
        },
        {
            "start": 932654353,
            "stop": 932654379
        },
        {
            "start": 932654474,
            "stop": 932654506
        },
        {
            "start": 932654549,
            "stop": 932654701
        },
        {
            "start": 932654740,
            "stop": 932654880
        },
        {
            "start": 932654899,
            "stop": 932655212
        },
        {
            "start": 932655231,
            "stop": 932655585
        },
        {
            "start": 932655590,
            "stop": 932655804
        },
        {
            "start": 932655823,
            "stop": 932655837
        },
        {
            "start": 932655855,
            "stop": 932656031
        },
        {
            "start": 932656036,
            "stop": 932656243
        },
        {
            "start": 932656262,
            "stop": 932656357
        },
        {
            "start": 932656376,
            "stop": 932656766
        },
        {
            "start": 932656785,
            "stop": 932656823
        },
        {
            "start": 932657009,
            "stop": 932657012
        },
        {
            "start": 932657056,
            "stop": 932657080
        },
        {
            "start": 932657102,
            "stop": 932657103
        },
        {
            "start": 932657175,
            "stop": 932657176
        },
        {
            "start": 932657383,
            "stop": 932657391
        }
    ]
}