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

{
    "next": "https://gwosc.org/api/v2/runs/O4b/timelines/L1_BURST_CAT1/segments?format=api&page=11",
    "previous": "https://gwosc.org/api/v2/runs/O4b/timelines/L1_BURST_CAT1/segments?format=api&page=9",
    "results_count": 1162,
    "results_per_page": 20,
    "num_pages": 59,
    "page_number": 10,
    "results": [
        {
            "start": 1399850799,
            "stop": 1399854639
        },
        {
            "start": 1399854687,
            "stop": 1399856439
        },
        {
            "start": 1399856503,
            "stop": 1399856727
        },
        {
            "start": 1399856775,
            "stop": 1399856983
        },
        {
            "start": 1399857031,
            "stop": 1399857519
        },
        {
            "start": 1399857583,
            "stop": 1399860799
        },
        {
            "start": 1399860847,
            "stop": 1399862063
        },
        {
            "start": 1399862111,
            "stop": 1399868111
        },
        {
            "start": 1399868175,
            "stop": 1399869439
        },
        {
            "start": 1399869503,
            "stop": 1399870215
        },
        {
            "start": 1399870279,
            "stop": 1399871191
        },
        {
            "start": 1399871239,
            "stop": 1399872543
        },
        {
            "start": 1399872607,
            "stop": 1399879359
        },
        {
            "start": 1399879423,
            "stop": 1399880711
        },
        {
            "start": 1399880775,
            "stop": 1399881575
        },
        {
            "start": 1399881639,
            "stop": 1399882991
        },
        {
            "start": 1399883055,
            "stop": 1399886847
        },
        {
            "start": 1399886911,
            "stop": 1399888423
        },
        {
            "start": 1399888487,
            "stop": 1399894671
        },
        {
            "start": 1399894735,
            "stop": 1399901951
        }
    ]
}