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=101
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=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=100",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 101,
    "results": [
        {
            "start": 818077941,
            "stop": 818077942
        },
        {
            "start": 818078046,
            "stop": 818078047
        },
        {
            "start": 818078185,
            "stop": 818078189
        },
        {
            "start": 818078212,
            "stop": 818078215
        },
        {
            "start": 818078258,
            "stop": 818078266
        },
        {
            "start": 818078317,
            "stop": 818078318
        },
        {
            "start": 818078609,
            "stop": 818078610
        },
        {
            "start": 818078623,
            "stop": 818078626
        },
        {
            "start": 818078766,
            "stop": 818078767
        },
        {
            "start": 818078804,
            "stop": 818078808
        },
        {
            "start": 818078873,
            "stop": 818078874
        },
        {
            "start": 818078990,
            "stop": 818078992
        },
        {
            "start": 818079083,
            "stop": 818079084
        },
        {
            "start": 818079115,
            "stop": 818079116
        },
        {
            "start": 818079246,
            "stop": 818079248
        },
        {
            "start": 818079257,
            "stop": 818079261
        },
        {
            "start": 818079431,
            "stop": 818079432
        },
        {
            "start": 818079568,
            "stop": 818079572
        },
        {
            "start": 818079583,
            "stop": 818079585
        },
        {
            "start": 818079699,
            "stop": 818079700
        }
    ]
}