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=51
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=52",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=50",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 51,
    "results": [
        {
            "start": 848396234,
            "stop": 848396379
        },
        {
            "start": 848408947,
            "stop": 848409083
        },
        {
            "start": 848421421,
            "stop": 848421562
        },
        {
            "start": 848456450,
            "stop": 848456579
        },
        {
            "start": 848476067,
            "stop": 848476195
        },
        {
            "start": 848488827,
            "stop": 848488954
        },
        {
            "start": 848498884,
            "stop": 848499027
        },
        {
            "start": 848507844,
            "stop": 848507970
        },
        {
            "start": 848517147,
            "stop": 848517290
        },
        {
            "start": 848522923,
            "stop": 848523050
        },
        {
            "start": 848531963,
            "stop": 848532107
        },
        {
            "start": 848543620,
            "stop": 848543754
        },
        {
            "start": 848613667,
            "stop": 848613795
        },
        {
            "start": 848623003,
            "stop": 848623203
        },
        {
            "start": 848687026,
            "stop": 848687154
        },
        {
            "start": 848712947,
            "stop": 848713155
        },
        {
            "start": 848722403,
            "stop": 848722539
        },
        {
            "start": 848728267,
            "stop": 848728410
        },
        {
            "start": 848743915,
            "stop": 848744043
        },
        {
            "start": 848750386,
            "stop": 848750522
        }
    ]
}