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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=111",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=109",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 110,
    "results": [
        {
            "start": 830345208,
            "stop": 830347493
        },
        {
            "start": 830349220,
            "stop": 830350932
        },
        {
            "start": 830358004,
            "stop": 830361487
        },
        {
            "start": 830399967,
            "stop": 830400179
        },
        {
            "start": 830404301,
            "stop": 830404872
        },
        {
            "start": 830405798,
            "stop": 830405879
        },
        {
            "start": 830406620,
            "stop": 830406731
        },
        {
            "start": 830408849,
            "stop": 830409373
        },
        {
            "start": 830411015,
            "stop": 830411713
        },
        {
            "start": 830412762,
            "stop": 830412822
        },
        {
            "start": 830414468,
            "stop": 830414593
        },
        {
            "start": 830416645,
            "stop": 830416657
        },
        {
            "start": 830417552,
            "stop": 830417773
        },
        {
            "start": 830418967,
            "stop": 830419314
        },
        {
            "start": 830426577,
            "stop": 830427946
        },
        {
            "start": 830429396,
            "stop": 830433184
        },
        {
            "start": 830434103,
            "stop": 830434197
        },
        {
            "start": 830435929,
            "stop": 830438764
        },
        {
            "start": 830440900,
            "stop": 830443453
        },
        {
            "start": 830446029,
            "stop": 830448853
        }
    ]
}