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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10011",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10009",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10010,
    "results": [
        {
            "start": 872289727,
            "stop": 872289738
        },
        {
            "start": 872289858,
            "stop": 872289899
        },
        {
            "start": 872289917,
            "stop": 872289924
        },
        {
            "start": 872290044,
            "stop": 872290228
        },
        {
            "start": 872290244,
            "stop": 872290513
        },
        {
            "start": 872290530,
            "stop": 872290685
        },
        {
            "start": 872290805,
            "stop": 872291970
        },
        {
            "start": 872292036,
            "stop": 872293032
        },
        {
            "start": 872293152,
            "stop": 872293342
        },
        {
            "start": 872293583,
            "stop": 872293976
        },
        {
            "start": 872293993,
            "stop": 872293999
        },
        {
            "start": 872294035,
            "stop": 872295769
        },
        {
            "start": 872295806,
            "stop": 872296031
        },
        {
            "start": 872296121,
            "stop": 872296260
        },
        {
            "start": 872296321,
            "stop": 872296330
        },
        {
            "start": 872296392,
            "stop": 872296431
        },
        {
            "start": 872296512,
            "stop": 872296622
        },
        {
            "start": 872296668,
            "stop": 872296676
        },
        {
            "start": 872296712,
            "stop": 872297038
        },
        {
            "start": 872297055,
            "stop": 872297735
        }
    ]
}