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=2223
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=2224",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=2222",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 2223,
    "results": [
        {
            "start": 872974873,
            "stop": 872974970
        },
        {
            "start": 872974987,
            "stop": 872975071
        },
        {
            "start": 872976056,
            "stop": 872976072
        },
        {
            "start": 872976089,
            "stop": 872976090
        },
        {
            "start": 872976109,
            "stop": 872976173
        },
        {
            "start": 872976190,
            "stop": 872976267
        },
        {
            "start": 872976273,
            "stop": 872976300
        },
        {
            "start": 872976317,
            "stop": 872976339
        },
        {
            "start": 872976345,
            "stop": 872976427
        },
        {
            "start": 872976444,
            "stop": 872976472
        },
        {
            "start": 872976489,
            "stop": 872976929
        },
        {
            "start": 872977053,
            "stop": 872977360
        },
        {
            "start": 872977366,
            "stop": 872977392
        },
        {
            "start": 872977398,
            "stop": 872977652
        },
        {
            "start": 872977658,
            "stop": 872977858
        },
        {
            "start": 872977864,
            "stop": 872977904
        },
        {
            "start": 872977926,
            "stop": 872977964
        },
        {
            "start": 872977984,
            "stop": 872978049
        },
        {
            "start": 872978055,
            "stop": 872978125
        },
        {
            "start": 872978130,
            "stop": 872978195
        }
    ]
}