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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2021",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2019",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2020,
    "results": [
        {
            "start": 858631750,
            "stop": 858637464
        },
        {
            "start": 858637467,
            "stop": 858643077
        },
        {
            "start": 858643283,
            "stop": 858644257
        },
        {
            "start": 858644557,
            "stop": 858663087
        },
        {
            "start": 858663093,
            "stop": 858689842
        },
        {
            "start": 858689848,
            "stop": 858693365
        },
        {
            "start": 858693475,
            "stop": 858693552
        },
        {
            "start": 858694210,
            "stop": 858695972
        },
        {
            "start": 858695980,
            "stop": 858696060
        },
        {
            "start": 858696065,
            "stop": 858698487
        },
        {
            "start": 858698493,
            "stop": 858698885
        },
        {
            "start": 858698893,
            "stop": 858698895
        },
        {
            "start": 858698900,
            "stop": 858698910
        },
        {
            "start": 858698918,
            "stop": 858698955
        },
        {
            "start": 858698960,
            "stop": 858698967
        },
        {
            "start": 858698978,
            "stop": 858708807
        },
        {
            "start": 858708813,
            "stop": 858709215
        },
        {
            "start": 858709220,
            "stop": 858709232
        },
        {
            "start": 858709238,
            "stop": 858709265
        },
        {
            "start": 858709270,
            "stop": 858713650
        }
    ]
}