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/L1_CBCLOW_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/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=122",
    "results_count": 97650,
    "results_per_page": 20,
    "num_pages": 4883,
    "page_number": 123,
    "results": [
        {
            "start": 932660717,
            "stop": 932660727
        },
        {
            "start": 932660749,
            "stop": 932660761
        },
        {
            "start": 932660807,
            "stop": 932660942
        },
        {
            "start": 932660962,
            "stop": 932661002
        },
        {
            "start": 932661021,
            "stop": 932661511
        },
        {
            "start": 932661532,
            "stop": 932661569
        },
        {
            "start": 932661588,
            "stop": 932661910
        },
        {
            "start": 932661929,
            "stop": 932661970
        },
        {
            "start": 932661975,
            "stop": 932662036
        },
        {
            "start": 932662055,
            "stop": 932662150
        },
        {
            "start": 932662155,
            "stop": 932662190
        },
        {
            "start": 932662195,
            "stop": 932662229
        },
        {
            "start": 932665583,
            "stop": 932665620
        },
        {
            "start": 932668359,
            "stop": 932668437
        },
        {
            "start": 932668442,
            "stop": 932669454
        },
        {
            "start": 932669473,
            "stop": 932669702
        },
        {
            "start": 932669721,
            "stop": 932669724
        },
        {
            "start": 932669743,
            "stop": 932669748
        },
        {
            "start": 932669836,
            "stop": 932669837
        },
        {
            "start": 932669923,
            "stop": 932669932
        }
    ]
}