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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=322",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=320",
    "results_count": 9439,
    "results_per_page": 20,
    "num_pages": 472,
    "page_number": 321,
    "results": [
        {
            "start": 860448923,
            "stop": 860449267
        },
        {
            "start": 860449303,
            "stop": 860449592
        },
        {
            "start": 860449633,
            "stop": 860451717
        },
        {
            "start": 860451738,
            "stop": 860453890
        },
        {
            "start": 860454234,
            "stop": 860454260
        },
        {
            "start": 860454560,
            "stop": 860478293
        },
        {
            "start": 860481617,
            "stop": 860489446
        },
        {
            "start": 860489886,
            "stop": 860489937
        },
        {
            "start": 860490237,
            "stop": 860490311
        },
        {
            "start": 860490611,
            "stop": 860497450
        },
        {
            "start": 860498094,
            "stop": 860499882
        },
        {
            "start": 860499903,
            "stop": 860506689
        },
        {
            "start": 860507267,
            "stop": 860509484
        },
        {
            "start": 860510062,
            "stop": 860510213
        },
        {
            "start": 860510570,
            "stop": 860510600
        },
        {
            "start": 860511308,
            "stop": 860514004
        },
        {
            "start": 860514088,
            "stop": 860514107
        },
        {
            "start": 860514131,
            "stop": 860514490
        },
        {
            "start": 860514508,
            "stop": 860517959
        },
        {
            "start": 860518187,
            "stop": 860519662
        }
    ]
}