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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=98",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 99,
    "results": [
        {
            "start": 832623814,
            "stop": 832658741
        },
        {
            "start": 832659283,
            "stop": 832660821
        },
        {
            "start": 832662212,
            "stop": 832679226
        },
        {
            "start": 832693201,
            "stop": 832696794
        },
        {
            "start": 832704396,
            "stop": 832724118
        },
        {
            "start": 832728628,
            "stop": 832733241
        },
        {
            "start": 832733363,
            "stop": 832735078
        },
        {
            "start": 832735201,
            "stop": 832735226
        },
        {
            "start": 832735352,
            "stop": 832747578
        },
        {
            "start": 832748909,
            "stop": 832776134
        },
        {
            "start": 832777236,
            "stop": 832777681
        },
        {
            "start": 832777809,
            "stop": 832789523
        },
        {
            "start": 832790054,
            "stop": 832791008
        },
        {
            "start": 832793778,
            "stop": 832802110
        },
        {
            "start": 832804694,
            "stop": 832822939
        },
        {
            "start": 832832626,
            "stop": 832835776
        },
        {
            "start": 832836345,
            "stop": 832860234
        },
        {
            "start": 832864479,
            "stop": 832867943
        },
        {
            "start": 832868015,
            "stop": 832881115
        },
        {
            "start": 832881519,
            "stop": 832882519
        }
    ]
}