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=255
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=256",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT3/segments?format=api&page=254",
    "results_count": 75537,
    "results_per_page": 20,
    "num_pages": 3777,
    "page_number": 255,
    "results": [
        {
            "start": 931590821,
            "stop": 931590907
        },
        {
            "start": 931590908,
            "stop": 931591117
        },
        {
            "start": 931591118,
            "stop": 931591223
        },
        {
            "start": 931591225,
            "stop": 931591358
        },
        {
            "start": 931591360,
            "stop": 931591372
        },
        {
            "start": 931591375,
            "stop": 931591387
        },
        {
            "start": 931591390,
            "stop": 931591403
        },
        {
            "start": 931591404,
            "stop": 931591417
        },
        {
            "start": 931591420,
            "stop": 931591551
        },
        {
            "start": 931591552,
            "stop": 931591557
        },
        {
            "start": 931591558,
            "stop": 931591567
        },
        {
            "start": 931591568,
            "stop": 931591634
        },
        {
            "start": 931591635,
            "stop": 931591738
        },
        {
            "start": 931591739,
            "stop": 931591819
        },
        {
            "start": 931591820,
            "stop": 931591875
        },
        {
            "start": 931591877,
            "stop": 931591932
        },
        {
            "start": 931591933,
            "stop": 931591957
        },
        {
            "start": 931591958,
            "stop": 931592019
        },
        {
            "start": 931592020,
            "stop": 931592206
        },
        {
            "start": 931592207,
            "stop": 931592228
        }
    ]
}