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_CAT2/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/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=122",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 123,
    "results": [
        {
            "start": 818247726,
            "stop": 818247728
        },
        {
            "start": 818247824,
            "stop": 818247827
        },
        {
            "start": 818247881,
            "stop": 818247882
        },
        {
            "start": 818247960,
            "stop": 818247968
        },
        {
            "start": 818248001,
            "stop": 818248004
        },
        {
            "start": 818248021,
            "stop": 818248022
        },
        {
            "start": 818248421,
            "stop": 818248425
        },
        {
            "start": 818248519,
            "stop": 818248521
        },
        {
            "start": 818248536,
            "stop": 818248538
        },
        {
            "start": 818248552,
            "stop": 818248555
        },
        {
            "start": 818248587,
            "stop": 818248594
        },
        {
            "start": 818248686,
            "stop": 818248690
        },
        {
            "start": 818248780,
            "stop": 818248783
        },
        {
            "start": 818248906,
            "stop": 818248907
        },
        {
            "start": 818248947,
            "stop": 818248954
        },
        {
            "start": 818248975,
            "stop": 818248986
        },
        {
            "start": 818249196,
            "stop": 818249202
        },
        {
            "start": 818249264,
            "stop": 818249265
        },
        {
            "start": 818249283,
            "stop": 818249284
        },
        {
            "start": 818249340,
            "stop": 818249344
        }
    ]
}