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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=122",
    "results_count": 8301,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 123,
    "results": [
        {
            "start": 1176339526,
            "stop": 1176339554
        },
        {
            "start": 1176339555,
            "stop": 1176340078
        },
        {
            "start": 1176340080,
            "stop": 1176340979
        },
        {
            "start": 1176340981,
            "stop": 1176345355
        },
        {
            "start": 1176345361,
            "stop": 1176348625
        },
        {
            "start": 1176348627,
            "stop": 1176349418
        },
        {
            "start": 1176349419,
            "stop": 1176349551
        },
        {
            "start": 1176349552,
            "stop": 1176350520
        },
        {
            "start": 1176352584,
            "stop": 1176363961
        },
        {
            "start": 1176363963,
            "stop": 1176372436
        },
        {
            "start": 1176372441,
            "stop": 1176399005
        },
        {
            "start": 1176399007,
            "stop": 1176399470
        },
        {
            "start": 1176399472,
            "stop": 1176399473
        },
        {
            "start": 1176399480,
            "stop": 1176399878
        },
        {
            "start": 1176399879,
            "stop": 1176400692
        },
        {
            "start": 1176400695,
            "stop": 1176401255
        },
        {
            "start": 1176401259,
            "stop": 1176401260
        },
        {
            "start": 1176401262,
            "stop": 1176401265
        },
        {
            "start": 1176401267,
            "stop": 1176401728
        },
        {
            "start": 1176401729,
            "stop": 1176406418
        }
    ]
}