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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=256",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=254",
    "results_count": 9439,
    "results_per_page": 20,
    "num_pages": 472,
    "page_number": 255,
    "results": [
        {
            "start": 854174791,
            "stop": 854196175
        },
        {
            "start": 854196194,
            "stop": 854198048
        },
        {
            "start": 854199516,
            "stop": 854208103
        },
        {
            "start": 854238914,
            "stop": 854249089
        },
        {
            "start": 854251031,
            "stop": 854251262
        },
        {
            "start": 854251281,
            "stop": 854287005
        },
        {
            "start": 854287023,
            "stop": 854288010
        },
        {
            "start": 854289452,
            "stop": 854292135
        },
        {
            "start": 854295168,
            "stop": 854295339
        },
        {
            "start": 854296381,
            "stop": 854296520
        },
        {
            "start": 854296630,
            "stop": 854297198
        },
        {
            "start": 854297498,
            "stop": 854297652
        },
        {
            "start": 854297762,
            "stop": 854299699
        },
        {
            "start": 854299999,
            "stop": 854305908
        },
        {
            "start": 854306208,
            "stop": 854311583
        },
        {
            "start": 854316899,
            "stop": 854319712
        },
        {
            "start": 854321804,
            "stop": 854324746
        },
        {
            "start": 854327038,
            "stop": 854403337
        },
        {
            "start": 854403356,
            "stop": 854408489
        },
        {
            "start": 854410250,
            "stop": 854427413
        }
    ]
}