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=2003
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=2004",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2002",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2003,
    "results": [
        {
            "start": 857674655,
            "stop": 857674825
        },
        {
            "start": 857674833,
            "stop": 857675097
        },
        {
            "start": 857675103,
            "stop": 857675714
        },
        {
            "start": 857675717,
            "stop": 857676506
        },
        {
            "start": 857676510,
            "stop": 857677268
        },
        {
            "start": 857677271,
            "stop": 857677738
        },
        {
            "start": 857677780,
            "stop": 857678396
        },
        {
            "start": 857678962,
            "stop": 857680290
        },
        {
            "start": 857680770,
            "stop": 857681820
        },
        {
            "start": 857682140,
            "stop": 857685997
        },
        {
            "start": 857688330,
            "stop": 857688379
        },
        {
            "start": 857688679,
            "stop": 857688723
        },
        {
            "start": 857688726,
            "stop": 857692393
        },
        {
            "start": 857692457,
            "stop": 857692561
        },
        {
            "start": 857692564,
            "stop": 857695410
        },
        {
            "start": 857695578,
            "stop": 857695644
        },
        {
            "start": 857695654,
            "stop": 857695939
        },
        {
            "start": 857696239,
            "stop": 857697267
        },
        {
            "start": 857697273,
            "stop": 857699135
        },
        {
            "start": 857699138,
            "stop": 857706568
        }
    ]
}