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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=199",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 200,
    "results": [
        {
            "start": 817695948,
            "stop": 817695973
        },
        {
            "start": 817695993,
            "stop": 817696000
        },
        {
            "start": 817696020,
            "stop": 817696155
        },
        {
            "start": 817696239,
            "stop": 817696252
        },
        {
            "start": 817696301,
            "stop": 817696440
        },
        {
            "start": 817696485,
            "stop": 817696534
        },
        {
            "start": 817696667,
            "stop": 817696669
        },
        {
            "start": 817696701,
            "stop": 817696791
        },
        {
            "start": 817696840,
            "stop": 817696881
        },
        {
            "start": 817696904,
            "stop": 817696915
        },
        {
            "start": 817696947,
            "stop": 817696955
        },
        {
            "start": 817696975,
            "stop": 817696991
        },
        {
            "start": 817697025,
            "stop": 817697028
        },
        {
            "start": 817697049,
            "stop": 817697064
        },
        {
            "start": 817697099,
            "stop": 817697148
        },
        {
            "start": 817697169,
            "stop": 817697297
        },
        {
            "start": 817697326,
            "stop": 817697338
        },
        {
            "start": 817697358,
            "stop": 817697428
        },
        {
            "start": 817697468,
            "stop": 817697544
        },
        {
            "start": 817697568,
            "stop": 817697574
        }
    ]
}