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=59
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=60",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=58",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 59,
    "results": [
        {
            "start": 853357493,
            "stop": 853357622
        },
        {
            "start": 853365397,
            "stop": 853365542
        },
        {
            "start": 853390989,
            "stop": 853391116
        },
        {
            "start": 853396742,
            "stop": 853396885
        },
        {
            "start": 853453797,
            "stop": 853453932
        },
        {
            "start": 853489606,
            "stop": 853489741
        },
        {
            "start": 853506983,
            "stop": 853507116
        },
        {
            "start": 853577364,
            "stop": 853577500
        },
        {
            "start": 853591124,
            "stop": 853591251
        },
        {
            "start": 853769139,
            "stop": 853769267
        },
        {
            "start": 853860011,
            "stop": 853860139
        },
        {
            "start": 853956293,
            "stop": 853956436
        },
        {
            "start": 854015429,
            "stop": 854015572
        },
        {
            "start": 854034372,
            "stop": 854034588
        },
        {
            "start": 854086901,
            "stop": 854087029
        },
        {
            "start": 854117301,
            "stop": 854117501
        },
        {
            "start": 854134773,
            "stop": 854134908
        },
        {
            "start": 854161021,
            "stop": 854161156
        },
        {
            "start": 854187692,
            "stop": 854187900
        },
        {
            "start": 854253109,
            "stop": 854253236
        }
    ]
}