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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=99",
    "results_count": 17965,
    "results_per_page": 20,
    "num_pages": 899,
    "page_number": 100,
    "results": [
        {
            "start": 931668871,
            "stop": 931668877
        },
        {
            "start": 931668887,
            "stop": 931668888
        },
        {
            "start": 931668895,
            "stop": 931668902
        },
        {
            "start": 931668912,
            "stop": 931668913
        },
        {
            "start": 931668951,
            "stop": 931668957
        },
        {
            "start": 931668964,
            "stop": 931668984
        },
        {
            "start": 931669010,
            "stop": 931669020
        },
        {
            "start": 931669027,
            "stop": 931669031
        },
        {
            "start": 931669043,
            "stop": 931669045
        },
        {
            "start": 931669068,
            "stop": 931669071
        },
        {
            "start": 931669078,
            "stop": 931669082
        },
        {
            "start": 931669129,
            "stop": 931669132
        },
        {
            "start": 931669139,
            "stop": 931669165
        },
        {
            "start": 931669172,
            "stop": 931669186
        },
        {
            "start": 931669195,
            "stop": 931669196
        },
        {
            "start": 931669212,
            "stop": 931669213
        },
        {
            "start": 931669222,
            "stop": 931669240
        },
        {
            "start": 931669247,
            "stop": 931669249
        },
        {
            "start": 931669258,
            "stop": 931669269
        },
        {
            "start": 931669300,
            "stop": 931669317
        }
    ]
}