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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT1/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT1/segments?format=api&page=110",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 111,
    "results": [
        {
            "start": 834947955,
            "stop": 834953374
        },
        {
            "start": 834954597,
            "stop": 834955033
        },
        {
            "start": 834955195,
            "stop": 834960261
        },
        {
            "start": 834962922,
            "stop": 834968085
        },
        {
            "start": 834968774,
            "stop": 834969681
        },
        {
            "start": 834970797,
            "stop": 834974783
        },
        {
            "start": 834974892,
            "stop": 834981566
        },
        {
            "start": 834981621,
            "stop": 834982420
        },
        {
            "start": 834982753,
            "stop": 834986141
        },
        {
            "start": 835032975,
            "stop": 835033622
        },
        {
            "start": 835035468,
            "stop": 835038377
        },
        {
            "start": 835038559,
            "stop": 835039378
        },
        {
            "start": 835040765,
            "stop": 835040856
        },
        {
            "start": 835043666,
            "stop": 835043863
        },
        {
            "start": 835043997,
            "stop": 835045602
        },
        {
            "start": 835045730,
            "stop": 835055052
        },
        {
            "start": 835056008,
            "stop": 835077792
        },
        {
            "start": 835078252,
            "stop": 835082692
        },
        {
            "start": 835084272,
            "stop": 835096616
        },
        {
            "start": 835096692,
            "stop": 835102795
        }
    ]
}