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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=63",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=61",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 62,
    "results": [
        {
            "start": 855013223,
            "stop": 855013352
        },
        {
            "start": 855020712,
            "stop": 855020839
        },
        {
            "start": 855045223,
            "stop": 855045352
        },
        {
            "start": 855068600,
            "stop": 855068737
        },
        {
            "start": 855091833,
            "stop": 855091960
        },
        {
            "start": 855101183,
            "stop": 855101312
        },
        {
            "start": 855115440,
            "stop": 855115576
        },
        {
            "start": 855129184,
            "stop": 855129312
        },
        {
            "start": 855137113,
            "stop": 855137255
        },
        {
            "start": 855151520,
            "stop": 855151656
        },
        {
            "start": 855157728,
            "stop": 855157856
        },
        {
            "start": 855167208,
            "stop": 855167343
        },
        {
            "start": 855182248,
            "stop": 855182384
        },
        {
            "start": 855207713,
            "stop": 855207856
        },
        {
            "start": 855232016,
            "stop": 855232216
        },
        {
            "start": 855276952,
            "stop": 855277080
        },
        {
            "start": 855309256,
            "stop": 855309399
        },
        {
            "start": 855321088,
            "stop": 855321303
        },
        {
            "start": 855336696,
            "stop": 855336832
        },
        {
            "start": 855362073,
            "stop": 855362199
        }
    ]
}