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

{
    "next": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT3/segments?format=api&page=301",
    "previous": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT3/segments?format=api&page=299",
    "results_count": 9495,
    "results_per_page": 20,
    "num_pages": 475,
    "page_number": 300,
    "results": [
        {
            "start": 1264841278,
            "stop": 1264841300
        },
        {
            "start": 1264841302,
            "stop": 1264841442
        },
        {
            "start": 1264841445,
            "stop": 1264841528
        },
        {
            "start": 1264841530,
            "stop": 1264841579
        },
        {
            "start": 1264841582,
            "stop": 1264841591
        },
        {
            "start": 1264841593,
            "stop": 1264841626
        },
        {
            "start": 1264841628,
            "stop": 1264841638
        },
        {
            "start": 1264841643,
            "stop": 1264841646
        },
        {
            "start": 1264841651,
            "stop": 1264841652
        },
        {
            "start": 1264841656,
            "stop": 1264841664
        },
        {
            "start": 1264841665,
            "stop": 1264841666
        },
        {
            "start": 1264841669,
            "stop": 1264841770
        },
        {
            "start": 1264841772,
            "stop": 1264841781
        },
        {
            "start": 1264841785,
            "stop": 1264841796
        },
        {
            "start": 1264841801,
            "stop": 1264841805
        },
        {
            "start": 1264841811,
            "stop": 1264841876
        },
        {
            "start": 1264841877,
            "stop": 1264841886
        },
        {
            "start": 1264841887,
            "stop": 1264842035
        },
        {
            "start": 1264842036,
            "stop": 1264842200
        },
        {
            "start": 1264842203,
            "stop": 1264842243
        }
    ]
}