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=2123
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=2124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=2122",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 2123,
    "results": [
        {
            "start": 872164446,
            "stop": 872164676
        },
        {
            "start": 872164695,
            "stop": 872164911
        },
        {
            "start": 872164930,
            "stop": 872164991
        },
        {
            "start": 872165012,
            "stop": 872165134
        },
        {
            "start": 872165153,
            "stop": 872165312
        },
        {
            "start": 872165354,
            "stop": 872166062
        },
        {
            "start": 872166084,
            "stop": 872166394
        },
        {
            "start": 872166413,
            "stop": 872166589
        },
        {
            "start": 872166609,
            "stop": 872166990
        },
        {
            "start": 872167009,
            "stop": 872167074
        },
        {
            "start": 872167095,
            "stop": 872167104
        },
        {
            "start": 872167154,
            "stop": 872167181
        },
        {
            "start": 872167207,
            "stop": 872167213
        },
        {
            "start": 872167244,
            "stop": 872167314
        },
        {
            "start": 872167359,
            "stop": 872167497
        },
        {
            "start": 872167516,
            "stop": 872167811
        },
        {
            "start": 872167830,
            "stop": 872167846
        },
        {
            "start": 872167868,
            "stop": 872167870
        },
        {
            "start": 872167889,
            "stop": 872168883
        },
        {
            "start": 872168917,
            "stop": 872169174
        }
    ]
}