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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT4/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT4/segments?format=api&page=122",
    "results_count": 199168,
    "results_per_page": 20,
    "num_pages": 9959,
    "page_number": 123,
    "results": [
        {
            "start": 818956724,
            "stop": 818957248
        },
        {
            "start": 818957280,
            "stop": 818958188
        },
        {
            "start": 818958205,
            "stop": 818959136
        },
        {
            "start": 818959400,
            "stop": 818959403
        },
        {
            "start": 818961755,
            "stop": 818962144
        },
        {
            "start": 818962176,
            "stop": 818964824
        },
        {
            "start": 818964828,
            "stop": 818965429
        },
        {
            "start": 818965447,
            "stop": 818966143
        },
        {
            "start": 818966324,
            "stop": 818966700
        },
        {
            "start": 818966760,
            "stop": 818967043
        },
        {
            "start": 818967224,
            "stop": 818967863
        },
        {
            "start": 818967983,
            "stop": 818969062
        },
        {
            "start": 818969936,
            "stop": 818970720
        },
        {
            "start": 818970840,
            "stop": 818971076
        },
        {
            "start": 818971385,
            "stop": 818972023
        },
        {
            "start": 818972204,
            "stop": 818975904
        },
        {
            "start": 818975936,
            "stop": 818977123
        },
        {
            "start": 818977304,
            "stop": 818977547
        },
        {
            "start": 818977667,
            "stop": 818979008
        },
        {
            "start": 818979040,
            "stop": 818980241
        }
    ]
}