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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=4712",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=4710",
    "results_count": 97650,
    "results_per_page": 20,
    "num_pages": 4883,
    "page_number": 4711,
    "results": [
        {
            "start": 969985736,
            "stop": 969985759
        },
        {
            "start": 969985762,
            "stop": 969985911
        },
        {
            "start": 969985914,
            "stop": 969985971
        },
        {
            "start": 969985974,
            "stop": 969986335
        },
        {
            "start": 969986338,
            "stop": 969986369
        },
        {
            "start": 969986372,
            "stop": 969986677
        },
        {
            "start": 969986680,
            "stop": 969986723
        },
        {
            "start": 969986726,
            "stop": 969986831
        },
        {
            "start": 969986834,
            "stop": 969986875
        },
        {
            "start": 969986878,
            "stop": 969986950
        },
        {
            "start": 969986953,
            "stop": 969986978
        },
        {
            "start": 969986981,
            "stop": 969987216
        },
        {
            "start": 969987219,
            "stop": 969987256
        },
        {
            "start": 969987259,
            "stop": 969987273
        },
        {
            "start": 969987276,
            "stop": 969987281
        },
        {
            "start": 969987284,
            "stop": 969987305
        },
        {
            "start": 969987308,
            "stop": 969987331
        },
        {
            "start": 969987334,
            "stop": 969987429
        },
        {
            "start": 969987432,
            "stop": 969987439
        },
        {
            "start": 969987442,
            "stop": 969987635
        }
    ]
}