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=251
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=252",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=250",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 251,
    "results": [
        {
            "start": 857132461,
            "stop": 857162988
        },
        {
            "start": 857163125,
            "stop": 857169256
        },
        {
            "start": 857170484,
            "stop": 857214883
        },
        {
            "start": 857215522,
            "stop": 857232137
        },
        {
            "start": 857251150,
            "stop": 857257827
        },
        {
            "start": 857258374,
            "stop": 857262418
        },
        {
            "start": 857263073,
            "stop": 857264648
        },
        {
            "start": 857264989,
            "stop": 857268708
        },
        {
            "start": 857269210,
            "stop": 857308434
        },
        {
            "start": 857308975,
            "stop": 857321204
        },
        {
            "start": 857321382,
            "stop": 857325335
        },
        {
            "start": 857325337,
            "stop": 857334762
        },
        {
            "start": 857335062,
            "stop": 857335790
        },
        {
            "start": 857336119,
            "stop": 857362356
        },
        {
            "start": 857363924,
            "stop": 857365836
        },
        {
            "start": 857367553,
            "stop": 857402091
        },
        {
            "start": 857403321,
            "stop": 857406403
        },
        {
            "start": 857410503,
            "stop": 857411130
        },
        {
            "start": 857411240,
            "stop": 857411415
        },
        {
            "start": 857412000,
            "stop": 857412477
        }
    ]
}