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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=790",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=788",
    "results_count": 17965,
    "results_per_page": 20,
    "num_pages": 899,
    "page_number": 789,
    "results": [
        {
            "start": 957547559,
            "stop": 957548095
        },
        {
            "start": 957548101,
            "stop": 957552462
        },
        {
            "start": 957552468,
            "stop": 957554763
        },
        {
            "start": 957554769,
            "stop": 957555536
        },
        {
            "start": 957555542,
            "stop": 957558467
        },
        {
            "start": 957558473,
            "stop": 957558620
        },
        {
            "start": 957567771,
            "stop": 957569374
        },
        {
            "start": 957569460,
            "stop": 957571580
        },
        {
            "start": 957571601,
            "stop": 957572907
        },
        {
            "start": 957572913,
            "stop": 957575041
        },
        {
            "start": 957575177,
            "stop": 957575904
        },
        {
            "start": 957575910,
            "stop": 957576057
        },
        {
            "start": 957576063,
            "stop": 957576911
        },
        {
            "start": 957576917,
            "stop": 957577587
        },
        {
            "start": 957577593,
            "stop": 957577966
        },
        {
            "start": 957577972,
            "stop": 957578117
        },
        {
            "start": 957578123,
            "stop": 957578489
        },
        {
            "start": 957578494,
            "stop": 957578566
        },
        {
            "start": 957578572,
            "stop": 957578636
        },
        {
            "start": 957578642,
            "stop": 957578654
        }
    ]
}