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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=50",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=48",
    "results_count": 5354,
    "results_per_page": 20,
    "num_pages": 268,
    "page_number": 49,
    "results": [
        {
            "start": 821666021,
            "stop": 821666072
        },
        {
            "start": 821666074,
            "stop": 821666097
        },
        {
            "start": 821666098,
            "stop": 821666927
        },
        {
            "start": 821667040,
            "stop": 821667305
        },
        {
            "start": 821667307,
            "stop": 821667710
        },
        {
            "start": 821667712,
            "stop": 821667928
        },
        {
            "start": 821667930,
            "stop": 821668381
        },
        {
            "start": 821668383,
            "stop": 821669583
        },
        {
            "start": 821669799,
            "stop": 821677936
        },
        {
            "start": 821677938,
            "stop": 821678243
        },
        {
            "start": 821678245,
            "stop": 821678302
        },
        {
            "start": 821678304,
            "stop": 821678363
        },
        {
            "start": 821678365,
            "stop": 821678373
        },
        {
            "start": 821678375,
            "stop": 821678376
        },
        {
            "start": 821678380,
            "stop": 821678392
        },
        {
            "start": 821678394,
            "stop": 821678499
        },
        {
            "start": 821678501,
            "stop": 821678654
        },
        {
            "start": 821678656,
            "stop": 821679069
        },
        {
            "start": 821679071,
            "stop": 821679097
        },
        {
            "start": 821679099,
            "stop": 821679188
        }
    ]
}