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=53
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=54",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=52",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 53,
    "results": [
        {
            "start": 849163278,
            "stop": 849163414
        },
        {
            "start": 849172423,
            "stop": 849172550
        },
        {
            "start": 849185751,
            "stop": 849185895
        },
        {
            "start": 849197478,
            "stop": 849197606
        },
        {
            "start": 849220518,
            "stop": 849220646
        },
        {
            "start": 849234919,
            "stop": 849235046
        },
        {
            "start": 849240375,
            "stop": 849240511
        },
        {
            "start": 849263951,
            "stop": 849264078
        },
        {
            "start": 849278654,
            "stop": 849278782
        },
        {
            "start": 849309878,
            "stop": 849310086
        },
        {
            "start": 849325111,
            "stop": 849325238
        },
        {
            "start": 849336455,
            "stop": 849336663
        },
        {
            "start": 849360983,
            "stop": 849361111
        },
        {
            "start": 849413876,
            "stop": 849414004
        },
        {
            "start": 849430803,
            "stop": 849430931
        },
        {
            "start": 849449708,
            "stop": 849449844
        },
        {
            "start": 849464020,
            "stop": 849464155
        },
        {
            "start": 849502164,
            "stop": 849502291
        },
        {
            "start": 849509588,
            "stop": 849509716
        },
        {
            "start": 849524195,
            "stop": 849524323
        }
    ]
}