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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT1/segments?format=api&page=129",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT1/segments?format=api&page=127",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 128,
    "results": [
        {
            "start": 837938734,
            "stop": 837955096
        },
        {
            "start": 837955619,
            "stop": 837957846
        },
        {
            "start": 837959974,
            "stop": 837961250
        },
        {
            "start": 837962367,
            "stop": 837966001
        },
        {
            "start": 837981660,
            "stop": 837986685
        },
        {
            "start": 837986787,
            "stop": 837992770
        },
        {
            "start": 837993403,
            "stop": 838005082
        },
        {
            "start": 838006141,
            "stop": 838017562
        },
        {
            "start": 838019220,
            "stop": 838038621
        },
        {
            "start": 838043913,
            "stop": 838047855
        },
        {
            "start": 838047990,
            "stop": 838048324
        },
        {
            "start": 838048376,
            "stop": 838051244
        },
        {
            "start": 838052025,
            "stop": 838053892
        },
        {
            "start": 838055993,
            "stop": 838056290
        },
        {
            "start": 838056474,
            "stop": 838058497
        },
        {
            "start": 838058589,
            "stop": 838059562
        },
        {
            "start": 838059675,
            "stop": 838063074
        },
        {
            "start": 838063153,
            "stop": 838066816
        },
        {
            "start": 838098875,
            "stop": 838105725
        },
        {
            "start": 838106511,
            "stop": 838108222
        }
    ]
}