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=90
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=91",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=89",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 90,
    "results": [
        {
            "start": 826573948,
            "stop": 826580393
        },
        {
            "start": 826580693,
            "stop": 826582931
        },
        {
            "start": 826583231,
            "stop": 826602544
        },
        {
            "start": 826602844,
            "stop": 826626511
        },
        {
            "start": 826626811,
            "stop": 826626914
        },
        {
            "start": 826627374,
            "stop": 826640996
        },
        {
            "start": 826641106,
            "stop": 826641119
        },
        {
            "start": 826641419,
            "stop": 826642204
        },
        {
            "start": 826642504,
            "stop": 826643595
        },
        {
            "start": 826645094,
            "stop": 826658331
        },
        {
            "start": 826659118,
            "stop": 826660794
        },
        {
            "start": 826661094,
            "stop": 826666681
        },
        {
            "start": 826673817,
            "stop": 826681296
        },
        {
            "start": 826681406,
            "stop": 826681425
        },
        {
            "start": 826681725,
            "stop": 826681755
        },
        {
            "start": 826682402,
            "stop": 826685365
        },
        {
            "start": 826685665,
            "stop": 826686358
        },
        {
            "start": 826686782,
            "stop": 826700204
        },
        {
            "start": 826700653,
            "stop": 826709211
        },
        {
            "start": 826709321,
            "stop": 826709402
        }
    ]
}