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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT2/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT2/segments?format=api&page=249",
    "results_count": 15160,
    "results_per_page": 20,
    "num_pages": 758,
    "page_number": 250,
    "results": [
        {
            "start": 821683968,
            "stop": 821683970
        },
        {
            "start": 821683973,
            "stop": 821683981
        },
        {
            "start": 821683989,
            "stop": 821683997
        },
        {
            "start": 821684000,
            "stop": 821684015
        },
        {
            "start": 821684022,
            "stop": 821684024
        },
        {
            "start": 821684029,
            "stop": 821684031
        },
        {
            "start": 821684034,
            "stop": 821684042
        },
        {
            "start": 821684045,
            "stop": 821684047
        },
        {
            "start": 821684056,
            "stop": 821684060
        },
        {
            "start": 821684063,
            "stop": 821684064
        },
        {
            "start": 821684067,
            "stop": 821684080
        },
        {
            "start": 821684083,
            "stop": 821684091
        },
        {
            "start": 821684094,
            "stop": 821684098
        },
        {
            "start": 821684104,
            "stop": 821684105
        },
        {
            "start": 821684108,
            "stop": 821684114
        },
        {
            "start": 821684118,
            "stop": 821684121
        },
        {
            "start": 821684125,
            "stop": 821684145
        },
        {
            "start": 821684160,
            "stop": 821684185
        },
        {
            "start": 821684209,
            "stop": 821684217
        },
        {
            "start": 821684225,
            "stop": 821684230
        }
    ]
}