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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=281",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=279",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 280,
    "results": [
        {
            "start": 861693562,
            "stop": 861718887
        },
        {
            "start": 861719258,
            "stop": 861739598
        },
        {
            "start": 861740458,
            "stop": 861741247
        },
        {
            "start": 861741547,
            "stop": 861749310
        },
        {
            "start": 861751051,
            "stop": 861751225
        },
        {
            "start": 861751525,
            "stop": 861764588
        },
        {
            "start": 861765472,
            "stop": 861775029
        },
        {
            "start": 861775031,
            "stop": 861780114
        },
        {
            "start": 861780967,
            "stop": 861823913
        },
        {
            "start": 861825061,
            "stop": 861842758
        },
        {
            "start": 861844349,
            "stop": 861844977
        },
        {
            "start": 861845277,
            "stop": 861866469
        },
        {
            "start": 861866769,
            "stop": 861885870
        },
        {
            "start": 861891273,
            "stop": 861919618
        },
        {
            "start": 861920900,
            "stop": 861924328
        },
        {
            "start": 861925183,
            "stop": 861925283
        },
        {
            "start": 861925583,
            "stop": 861931595
        },
        {
            "start": 861931895,
            "stop": 861945979
        },
        {
            "start": 861947852,
            "stop": 861992530
        },
        {
            "start": 861993129,
            "stop": 861994122
        }
    ]
}