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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2342",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2340",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2341,
    "results": [
        {
            "start": 871842490,
            "stop": 871842628
        },
        {
            "start": 871842646,
            "stop": 871842655
        },
        {
            "start": 871842691,
            "stop": 871842736
        },
        {
            "start": 871842753,
            "stop": 871842761
        },
        {
            "start": 871842778,
            "stop": 871842895
        },
        {
            "start": 871842976,
            "stop": 871844712
        },
        {
            "start": 871844729,
            "stop": 871845540
        },
        {
            "start": 871845600,
            "stop": 871845725
        },
        {
            "start": 871845742,
            "stop": 871847450
        },
        {
            "start": 871847553,
            "stop": 871847555
        },
        {
            "start": 871847590,
            "stop": 871847846
        },
        {
            "start": 871847947,
            "stop": 871849493
        },
        {
            "start": 871849510,
            "stop": 871849779
        },
        {
            "start": 871849796,
            "stop": 871850203
        },
        {
            "start": 871850220,
            "stop": 871850400
        },
        {
            "start": 871850473,
            "stop": 871850481
        },
        {
            "start": 871850517,
            "stop": 871850570
        },
        {
            "start": 871850650,
            "stop": 871851287
        },
        {
            "start": 871851420,
            "stop": 871851515
        },
        {
            "start": 871851696,
            "stop": 871852740
        }
    ]
}