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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT3/segments?format=api&page=301",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT3/segments?format=api&page=299",
    "results_count": 289660,
    "results_per_page": 20,
    "num_pages": 14483,
    "page_number": 300,
    "results": [
        {
            "start": 931769635,
            "stop": 931769670
        },
        {
            "start": 931769673,
            "stop": 931769674
        },
        {
            "start": 931769677,
            "stop": 931769685
        },
        {
            "start": 931769687,
            "stop": 931769688
        },
        {
            "start": 931769691,
            "stop": 931769694
        },
        {
            "start": 931769697,
            "stop": 931769700
        },
        {
            "start": 931769704,
            "stop": 931769708
        },
        {
            "start": 931769711,
            "stop": 931769714
        },
        {
            "start": 931769717,
            "stop": 931769733
        },
        {
            "start": 931769738,
            "stop": 931769739
        },
        {
            "start": 931769742,
            "stop": 931769746
        },
        {
            "start": 931769749,
            "stop": 931769753
        },
        {
            "start": 931769757,
            "stop": 931769763
        },
        {
            "start": 931769766,
            "stop": 931769787
        },
        {
            "start": 931769790,
            "stop": 931769800
        },
        {
            "start": 931769804,
            "stop": 931769810
        },
        {
            "start": 931769812,
            "stop": 931769814
        },
        {
            "start": 931769817,
            "stop": 931769822
        },
        {
            "start": 931769825,
            "stop": 931769829
        },
        {
            "start": 931769832,
            "stop": 931769833
        }
    ]
}