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=60
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=61",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=59",
    "results_count": 17965,
    "results_per_page": 20,
    "num_pages": 899,
    "page_number": 60,
    "results": [
        {
            "start": 931564597,
            "stop": 931564598
        },
        {
            "start": 931564604,
            "stop": 931564620
        },
        {
            "start": 931564628,
            "stop": 931564632
        },
        {
            "start": 931564640,
            "stop": 931564646
        },
        {
            "start": 931564678,
            "stop": 931564682
        },
        {
            "start": 931564689,
            "stop": 931564693
        },
        {
            "start": 931564700,
            "stop": 931564739
        },
        {
            "start": 931564752,
            "stop": 931564755
        },
        {
            "start": 931564775,
            "stop": 931564782
        },
        {
            "start": 931564800,
            "stop": 931564807
        },
        {
            "start": 931564814,
            "stop": 931564820
        },
        {
            "start": 931564833,
            "stop": 931564840
        },
        {
            "start": 931564847,
            "stop": 931564850
        },
        {
            "start": 931564857,
            "stop": 931564866
        },
        {
            "start": 931564939,
            "stop": 931564941
        },
        {
            "start": 931564953,
            "stop": 931564954
        },
        {
            "start": 931564972,
            "stop": 931564978
        },
        {
            "start": 931564985,
            "stop": 931564991
        },
        {
            "start": 931565016,
            "stop": 931565025
        },
        {
            "start": 931565034,
            "stop": 931565041
        }
    ]
}