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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=256",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=254",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 255,
    "results": [
        {
            "start": 850080704,
            "stop": 850085415
        },
        {
            "start": 850085478,
            "stop": 850087993
        },
        {
            "start": 850087995,
            "stop": 850087996
        },
        {
            "start": 850089013,
            "stop": 850115161
        },
        {
            "start": 850116961,
            "stop": 850132870
        },
        {
            "start": 850132993,
            "stop": 850134350
        },
        {
            "start": 850136967,
            "stop": 850142113
        },
        {
            "start": 850143854,
            "stop": 850144813
        },
        {
            "start": 850144843,
            "stop": 850144845
        },
        {
            "start": 850145653,
            "stop": 850148113
        },
        {
            "start": 850148222,
            "stop": 850148470
        },
        {
            "start": 850148730,
            "stop": 850150093
        },
        {
            "start": 850151023,
            "stop": 850160953
        },
        {
            "start": 850160965,
            "stop": 850160966
        },
        {
            "start": 850161614,
            "stop": 850169053
        },
        {
            "start": 850169823,
            "stop": 850190597
        },
        {
            "start": 850190719,
            "stop": 850191673
        },
        {
            "start": 850191693,
            "stop": 850191695
        },
        {
            "start": 850192436,
            "stop": 850204633
        },
        {
            "start": 850204667,
            "stop": 850204668
        }
    ]
}