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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/L1_BURST_CAT3/segments?format=api&page=322",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/L1_BURST_CAT3/segments?format=api&page=320",
    "results_count": 9321,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 321,
    "results": [
        {
            "start": 1175947853,
            "stop": 1175948590
        },
        {
            "start": 1175951741,
            "stop": 1175951801
        },
        {
            "start": 1175951803,
            "stop": 1175953262
        },
        {
            "start": 1175953264,
            "stop": 1175954431
        },
        {
            "start": 1175980377,
            "stop": 1175990100
        },
        {
            "start": 1175990104,
            "stop": 1175990484
        },
        {
            "start": 1175990486,
            "stop": 1175993267
        },
        {
            "start": 1175995756,
            "stop": 1176000124
        },
        {
            "start": 1176000128,
            "stop": 1176002989
        },
        {
            "start": 1176002991,
            "stop": 1176005479
        },
        {
            "start": 1176005481,
            "stop": 1176008537
        },
        {
            "start": 1176008539,
            "stop": 1176011318
        },
        {
            "start": 1176011320,
            "stop": 1176012602
        },
        {
            "start": 1176012606,
            "stop": 1176014385
        },
        {
            "start": 1176014387,
            "stop": 1176017181
        },
        {
            "start": 1176017183,
            "stop": 1176019849
        },
        {
            "start": 1176019853,
            "stop": 1176019996
        },
        {
            "start": 1176019998,
            "stop": 1176022930
        },
        {
            "start": 1176022932,
            "stop": 1176025947
        },
        {
            "start": 1176025949,
            "stop": 1176028294
        }
    ]
}