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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT3/segments?format=api&page=401",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT3/segments?format=api&page=399",
    "results_count": 75537,
    "results_per_page": 20,
    "num_pages": 3777,
    "page_number": 400,
    "results": [
        {
            "start": 932629648,
            "stop": 932629655
        },
        {
            "start": 932629656,
            "stop": 932629685
        },
        {
            "start": 932629686,
            "stop": 932629706
        },
        {
            "start": 932629707,
            "stop": 932629779
        },
        {
            "start": 932629780,
            "stop": 932629781
        },
        {
            "start": 932629782,
            "stop": 932630046
        },
        {
            "start": 932630047,
            "stop": 932630161
        },
        {
            "start": 932630162,
            "stop": 932630184
        },
        {
            "start": 932630188,
            "stop": 932630225
        },
        {
            "start": 932630228,
            "stop": 932630250
        },
        {
            "start": 932630251,
            "stop": 932630375
        },
        {
            "start": 932630378,
            "stop": 932630391
        },
        {
            "start": 932630392,
            "stop": 932630415
        },
        {
            "start": 932630778,
            "stop": 932630780
        },
        {
            "start": 932630783,
            "stop": 932630795
        },
        {
            "start": 932630799,
            "stop": 932630805
        },
        {
            "start": 932630808,
            "stop": 932630824
        },
        {
            "start": 932630825,
            "stop": 932630926
        },
        {
            "start": 932630927,
            "stop": 932631125
        },
        {
            "start": 932631128,
            "stop": 932631263
        }
    ]
}