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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=24",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=22",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 23,
    "results": [
        {
            "start": 1126330528,
            "stop": 1126330624
        },
        {
            "start": 1126330626,
            "stop": 1126330707
        },
        {
            "start": 1126330709,
            "stop": 1126330718
        },
        {
            "start": 1126330719,
            "stop": 1126330746
        },
        {
            "start": 1126330747,
            "stop": 1126331145
        },
        {
            "start": 1126331146,
            "stop": 1126331408
        },
        {
            "start": 1126331409,
            "stop": 1126331788
        },
        {
            "start": 1126331789,
            "stop": 1126331882
        },
        {
            "start": 1126331883,
            "stop": 1126331990
        },
        {
            "start": 1126331991,
            "stop": 1126332088
        },
        {
            "start": 1126332090,
            "stop": 1126332175
        },
        {
            "start": 1126332176,
            "stop": 1126332218
        },
        {
            "start": 1126332219,
            "stop": 1126332620
        },
        {
            "start": 1126332621,
            "stop": 1126332705
        },
        {
            "start": 1126332707,
            "stop": 1126332905
        },
        {
            "start": 1126332906,
            "stop": 1126333268
        },
        {
            "start": 1126333270,
            "stop": 1126333377
        },
        {
            "start": 1126333378,
            "stop": 1126333454
        },
        {
            "start": 1126333455,
            "stop": 1126333559
        },
        {
            "start": 1126333560,
            "stop": 1126333901
        }
    ]
}