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

{
    "next": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT2/segments?format=api&page=302",
    "previous": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT2/segments?format=api&page=300",
    "results_count": 9495,
    "results_per_page": 20,
    "num_pages": 475,
    "page_number": 301,
    "results": [
        {
            "start": 1264842244,
            "stop": 1264842400
        },
        {
            "start": 1264842402,
            "stop": 1264842415
        },
        {
            "start": 1264842417,
            "stop": 1264842472
        },
        {
            "start": 1264842475,
            "stop": 1264842514
        },
        {
            "start": 1264842518,
            "stop": 1264842520
        },
        {
            "start": 1264842524,
            "stop": 1264842732
        },
        {
            "start": 1264842734,
            "stop": 1264842738
        },
        {
            "start": 1264842742,
            "stop": 1264842756
        },
        {
            "start": 1264842759,
            "stop": 1264842761
        },
        {
            "start": 1264842765,
            "stop": 1264842789
        },
        {
            "start": 1264842793,
            "stop": 1264842835
        },
        {
            "start": 1264842838,
            "stop": 1264842842
        },
        {
            "start": 1264842844,
            "stop": 1264842891
        },
        {
            "start": 1264842893,
            "stop": 1264842894
        },
        {
            "start": 1264842895,
            "stop": 1264842948
        },
        {
            "start": 1264842951,
            "stop": 1264843050
        },
        {
            "start": 1264843052,
            "stop": 1264843074
        },
        {
            "start": 1264843079,
            "stop": 1264843089
        },
        {
            "start": 1264843093,
            "stop": 1264843175
        },
        {
            "start": 1264843177,
            "stop": 1264843248
        }
    ]
}