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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2020",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2018",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2019,
    "results": [
        {
            "start": 858539800,
            "stop": 858540053
        },
        {
            "start": 858540056,
            "stop": 858540705
        },
        {
            "start": 858540710,
            "stop": 858540722
        },
        {
            "start": 858540728,
            "stop": 858541511
        },
        {
            "start": 858541516,
            "stop": 858555779
        },
        {
            "start": 858557039,
            "stop": 858561017
        },
        {
            "start": 858561023,
            "stop": 858561075
        },
        {
            "start": 858561080,
            "stop": 858563170
        },
        {
            "start": 858563172,
            "stop": 858594179
        },
        {
            "start": 858595354,
            "stop": 858604780
        },
        {
            "start": 858604785,
            "stop": 858607481
        },
        {
            "start": 858609212,
            "stop": 858615765
        },
        {
            "start": 858615770,
            "stop": 858615931
        },
        {
            "start": 858615937,
            "stop": 858617160
        },
        {
            "start": 858617165,
            "stop": 858617417
        },
        {
            "start": 858619710,
            "stop": 858620095
        },
        {
            "start": 858621523,
            "stop": 858622350
        },
        {
            "start": 858622410,
            "stop": 858625227
        },
        {
            "start": 858625230,
            "stop": 858626366
        },
        {
            "start": 858627585,
            "stop": 858631742
        }
    ]
}