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=180
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=181",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=179",
    "results_count": 8301,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 180,
    "results": [
        {
            "start": 1176944138,
            "stop": 1176944139
        },
        {
            "start": 1176944141,
            "stop": 1176944218
        },
        {
            "start": 1176944222,
            "stop": 1176944243
        },
        {
            "start": 1176944246,
            "stop": 1176944537
        },
        {
            "start": 1176944538,
            "stop": 1176944676
        },
        {
            "start": 1176944678,
            "stop": 1176944710
        },
        {
            "start": 1176944716,
            "stop": 1176945342
        },
        {
            "start": 1176945343,
            "stop": 1176945344
        },
        {
            "start": 1176945345,
            "stop": 1176945407
        },
        {
            "start": 1176945409,
            "stop": 1176945412
        },
        {
            "start": 1176945413,
            "stop": 1176945660
        },
        {
            "start": 1176945661,
            "stop": 1176945848
        },
        {
            "start": 1176945851,
            "stop": 1176945852
        },
        {
            "start": 1176945854,
            "stop": 1176945868
        },
        {
            "start": 1176945870,
            "stop": 1176945975
        },
        {
            "start": 1176945976,
            "stop": 1176945986
        },
        {
            "start": 1176945987,
            "stop": 1176946134
        },
        {
            "start": 1176946135,
            "stop": 1176946183
        },
        {
            "start": 1176946185,
            "stop": 1176946276
        },
        {
            "start": 1176946278,
            "stop": 1176946281
        }
    ]
}