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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT2/segments?format=api&page=3",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT2/segments?format=api",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 2,
    "results": [
        {
            "start": 1368360723,
            "stop": 1368362629
        },
        {
            "start": 1368362630,
            "stop": 1368364713
        },
        {
            "start": 1368364715,
            "stop": 1368365232
        },
        {
            "start": 1368365233,
            "stop": 1368366919
        },
        {
            "start": 1368366921,
            "stop": 1368369322
        },
        {
            "start": 1368369324,
            "stop": 1368370929
        },
        {
            "start": 1368370930,
            "stop": 1368371200
        },
        {
            "start": 1368418766,
            "stop": 1368418875
        },
        {
            "start": 1368418878,
            "stop": 1368420520
        },
        {
            "start": 1368420522,
            "stop": 1368421153
        },
        {
            "start": 1368421154,
            "stop": 1368422440
        },
        {
            "start": 1368422442,
            "stop": 1368422589
        },
        {
            "start": 1368422590,
            "stop": 1368423944
        },
        {
            "start": 1368423946,
            "stop": 1368424407
        },
        {
            "start": 1368424409,
            "stop": 1368425542
        },
        {
            "start": 1368425543,
            "stop": 1368426567
        },
        {
            "start": 1368426569,
            "stop": 1368426963
        },
        {
            "start": 1368426965,
            "stop": 1368428619
        },
        {
            "start": 1368428621,
            "stop": 1368429627
        },
        {
            "start": 1368429628,
            "stop": 1368430466
        }
    ]
}