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_CW_CAT1/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/S5/timelines/L1_CW_CAT1/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=199",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 200,
    "results": [
        {
            "start": 842703098,
            "stop": 842706613
        },
        {
            "start": 842708571,
            "stop": 842712187
        },
        {
            "start": 842712553,
            "stop": 842713246
        },
        {
            "start": 842738160,
            "stop": 842740981
        },
        {
            "start": 842742105,
            "stop": 842765406
        },
        {
            "start": 842766463,
            "stop": 842767633
        },
        {
            "start": 842767640,
            "stop": 842767641
        },
        {
            "start": 842768386,
            "stop": 842772613
        },
        {
            "start": 842773916,
            "stop": 842781306
        },
        {
            "start": 842782506,
            "stop": 842791933
        },
        {
            "start": 842791984,
            "stop": 842791986
        },
        {
            "start": 842792842,
            "stop": 842798173
        },
        {
            "start": 842798174,
            "stop": 842798176
        },
        {
            "start": 842798369,
            "stop": 842807390
        },
        {
            "start": 842808017,
            "stop": 842823951
        },
        {
            "start": 842824156,
            "stop": 842828252
        },
        {
            "start": 842828353,
            "stop": 842853553
        },
        {
            "start": 842853578,
            "stop": 842853579
        },
        {
            "start": 842854688,
            "stop": 842857093
        },
        {
            "start": 842857113,
            "stop": 842857115
        }
    ]
}