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=150
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=151",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT1/segments?format=api&page=149",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 150,
    "results": [
        {
            "start": 841668733,
            "stop": 841670035
        },
        {
            "start": 841671282,
            "stop": 841674394
        },
        {
            "start": 841680888,
            "stop": 841681476
        },
        {
            "start": 841681674,
            "stop": 841684716
        },
        {
            "start": 841684825,
            "stop": 841684889
        },
        {
            "start": 841684915,
            "stop": 841692468
        },
        {
            "start": 841692543,
            "stop": 841698737
        },
        {
            "start": 841699795,
            "stop": 841734978
        },
        {
            "start": 841735798,
            "stop": 841750511
        },
        {
            "start": 841751632,
            "stop": 841751685
        },
        {
            "start": 841751832,
            "stop": 841752938
        },
        {
            "start": 841754326,
            "stop": 841755940
        },
        {
            "start": 841756854,
            "stop": 841759127
        },
        {
            "start": 841759235,
            "stop": 841761929
        },
        {
            "start": 841762715,
            "stop": 841763943
        },
        {
            "start": 841763991,
            "stop": 841769945
        },
        {
            "start": 841770751,
            "stop": 841780922
        },
        {
            "start": 841781854,
            "stop": 841788303
        },
        {
            "start": 841788373,
            "stop": 841792265
        },
        {
            "start": 841793356,
            "stop": 841806269
        }
    ]
}