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=52
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=53",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=51",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 52,
    "results": [
        {
            "start": 848757587,
            "stop": 848757714
        },
        {
            "start": 848783455,
            "stop": 848783582
        },
        {
            "start": 848789375,
            "stop": 848789503
        },
        {
            "start": 848803351,
            "stop": 848803479
        },
        {
            "start": 848829671,
            "stop": 848829815
        },
        {
            "start": 848848023,
            "stop": 848848150
        },
        {
            "start": 848877959,
            "stop": 848878094
        },
        {
            "start": 848889303,
            "stop": 848889511
        },
        {
            "start": 848899766,
            "stop": 848899902
        },
        {
            "start": 848936327,
            "stop": 848936454
        },
        {
            "start": 848956830,
            "stop": 848956974
        },
        {
            "start": 848995143,
            "stop": 848995286
        },
        {
            "start": 849002719,
            "stop": 849002863
        },
        {
            "start": 849008823,
            "stop": 849008959
        },
        {
            "start": 849014958,
            "stop": 849015102
        },
        {
            "start": 849056615,
            "stop": 849056822
        },
        {
            "start": 849072630,
            "stop": 849072774
        },
        {
            "start": 849120663,
            "stop": 849120791
        },
        {
            "start": 849129167,
            "stop": 849129295
        },
        {
            "start": 849153607,
            "stop": 849153735
        }
    ]
}