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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=25",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=23",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 24,
    "results": [
        {
            "start": 818712375,
            "stop": 818715318
        },
        {
            "start": 818716549,
            "stop": 818718030
        },
        {
            "start": 818718840,
            "stop": 818719603
        },
        {
            "start": 818720844,
            "stop": 818723619
        },
        {
            "start": 818725527,
            "stop": 818728409
        },
        {
            "start": 818730103,
            "stop": 818734597
        },
        {
            "start": 818736605,
            "stop": 818768729
        },
        {
            "start": 818770503,
            "stop": 818790363
        },
        {
            "start": 818791706,
            "stop": 818793690
        },
        {
            "start": 818795618,
            "stop": 818800586
        },
        {
            "start": 818801834,
            "stop": 818805514
        },
        {
            "start": 818809957,
            "stop": 818812419
        },
        {
            "start": 818814826,
            "stop": 818814968
        },
        {
            "start": 818816477,
            "stop": 818817005
        },
        {
            "start": 818817518,
            "stop": 818831824
        },
        {
            "start": 818832578,
            "stop": 818860226
        },
        {
            "start": 818862107,
            "stop": 818878298
        },
        {
            "start": 818880188,
            "stop": 818883231
        },
        {
            "start": 818883464,
            "stop": 818885383
        },
        {
            "start": 818886084,
            "stop": 818888268
        }
    ]
}