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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=98",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 99,
    "results": [
        {
            "start": 818075764,
            "stop": 818075768
        },
        {
            "start": 818075806,
            "stop": 818075815
        },
        {
            "start": 818075847,
            "stop": 818075849
        },
        {
            "start": 818075902,
            "stop": 818075909
        },
        {
            "start": 818075938,
            "stop": 818075944
        },
        {
            "start": 818075962,
            "stop": 818075964
        },
        {
            "start": 818075972,
            "stop": 818075982
        },
        {
            "start": 818076011,
            "stop": 818076012
        },
        {
            "start": 818076026,
            "stop": 818076032
        },
        {
            "start": 818076052,
            "stop": 818076057
        },
        {
            "start": 818076120,
            "stop": 818076131
        },
        {
            "start": 818076190,
            "stop": 818076192
        },
        {
            "start": 818076209,
            "stop": 818076217
        },
        {
            "start": 818076245,
            "stop": 818076249
        },
        {
            "start": 818076362,
            "stop": 818076364
        },
        {
            "start": 818076421,
            "stop": 818076425
        },
        {
            "start": 818076439,
            "stop": 818076445
        },
        {
            "start": 818076457,
            "stop": 818076462
        },
        {
            "start": 818076640,
            "stop": 818076648
        },
        {
            "start": 818076752,
            "stop": 818076753
        }
    ]
}