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=234
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=235",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=233",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 234,
    "results": [
        {
            "start": 847441363,
            "stop": 847441364
        },
        {
            "start": 847442113,
            "stop": 847447542
        },
        {
            "start": 847447616,
            "stop": 847452073
        },
        {
            "start": 847452084,
            "stop": 847452085
        },
        {
            "start": 847452260,
            "stop": 847453213
        },
        {
            "start": 847453236,
            "stop": 847453237
        },
        {
            "start": 847454294,
            "stop": 847459733
        },
        {
            "start": 847463449,
            "stop": 847465993
        },
        {
            "start": 847467972,
            "stop": 847468324
        },
        {
            "start": 847468524,
            "stop": 847470403
        },
        {
            "start": 847470464,
            "stop": 847471213
        },
        {
            "start": 847480561,
            "stop": 847482673
        },
        {
            "start": 847482684,
            "stop": 847482685
        },
        {
            "start": 847482853,
            "stop": 847483213
        },
        {
            "start": 847484086,
            "stop": 847484867
        },
        {
            "start": 847486055,
            "stop": 847487473
        },
        {
            "start": 847487653,
            "stop": 847489213
        },
        {
            "start": 847490643,
            "stop": 847490646
        },
        {
            "start": 847490667,
            "stop": 847491185
        },
        {
            "start": 847491784,
            "stop": 847505233
        }
    ]
}