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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=199",
    "results_count": 8301,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 200,
    "results": [
        {
            "start": 1176968158,
            "stop": 1176968253
        },
        {
            "start": 1176968256,
            "stop": 1176968268
        },
        {
            "start": 1176968269,
            "stop": 1176968272
        },
        {
            "start": 1176968273,
            "stop": 1176968387
        },
        {
            "start": 1176968389,
            "stop": 1176968529
        },
        {
            "start": 1176968530,
            "stop": 1176968613
        },
        {
            "start": 1176968618,
            "stop": 1176968619
        },
        {
            "start": 1176968620,
            "stop": 1176968621
        },
        {
            "start": 1176968624,
            "stop": 1176968631
        },
        {
            "start": 1176968632,
            "stop": 1176968749
        },
        {
            "start": 1176968751,
            "stop": 1176968752
        },
        {
            "start": 1176968753,
            "stop": 1176968755
        },
        {
            "start": 1176968757,
            "stop": 1176968802
        },
        {
            "start": 1176968803,
            "stop": 1176968804
        },
        {
            "start": 1176968805,
            "stop": 1176968901
        },
        {
            "start": 1176968908,
            "stop": 1176969043
        },
        {
            "start": 1176969046,
            "stop": 1176969233
        },
        {
            "start": 1176969234,
            "stop": 1176969237
        },
        {
            "start": 1176969238,
            "stop": 1176969239
        },
        {
            "start": 1176969242,
            "stop": 1176969243
        }
    ]
}