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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=110",
    "results_count": 146533,
    "results_per_page": 20,
    "num_pages": 7327,
    "page_number": 111,
    "results": [
        {
            "start": 827591185,
            "stop": 827592238
        },
        {
            "start": 827592240,
            "stop": 827596687
        },
        {
            "start": 827596690,
            "stop": 827597287
        },
        {
            "start": 827611031,
            "stop": 827611130
        },
        {
            "start": 827611573,
            "stop": 827617093
        },
        {
            "start": 827617126,
            "stop": 827617128
        },
        {
            "start": 827617235,
            "stop": 827618210
        },
        {
            "start": 827620359,
            "stop": 827687406
        },
        {
            "start": 827689435,
            "stop": 827693150
        },
        {
            "start": 827693450,
            "stop": 827696427
        },
        {
            "start": 827696727,
            "stop": 827697347
        },
        {
            "start": 827697350,
            "stop": 827698162
        },
        {
            "start": 827698462,
            "stop": 827703912
        },
        {
            "start": 827703915,
            "stop": 827706857
        },
        {
            "start": 827706967,
            "stop": 827707067
        },
        {
            "start": 827707367,
            "stop": 827771566
        },
        {
            "start": 827771676,
            "stop": 827772073
        },
        {
            "start": 827772373,
            "stop": 827772422
        },
        {
            "start": 827772757,
            "stop": 827772934
        },
        {
            "start": 827773356,
            "stop": 827777953
        }
    ]
}