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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10007",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10005",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10006,
    "results": [
        {
            "start": 872250725,
            "stop": 872250728
        },
        {
            "start": 872250764,
            "stop": 872251151
        },
        {
            "start": 872251185,
            "stop": 872251607
        },
        {
            "start": 872251624,
            "stop": 872251665
        },
        {
            "start": 872251701,
            "stop": 872252928
        },
        {
            "start": 872255753,
            "stop": 872255786
        },
        {
            "start": 872255914,
            "stop": 872255915
        },
        {
            "start": 872256189,
            "stop": 872256223
        },
        {
            "start": 872256257,
            "stop": 872256283
        },
        {
            "start": 872256382,
            "stop": 872256468
        },
        {
            "start": 872256525,
            "stop": 872256551
        },
        {
            "start": 872256608,
            "stop": 872256768
        },
        {
            "start": 872256896,
            "stop": 872256945
        },
        {
            "start": 872256979,
            "stop": 872257023
        },
        {
            "start": 872257067,
            "stop": 872257089
        },
        {
            "start": 872257123,
            "stop": 872257139
        },
        {
            "start": 872257173,
            "stop": 872257241
        },
        {
            "start": 872257277,
            "stop": 872257527
        },
        {
            "start": 872257572,
            "stop": 872257582
        },
        {
            "start": 872257616,
            "stop": 872257673
        }
    ]
}