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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=100",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 101,
    "results": [
        {
            "start": 833143272,
            "stop": 833146629
        },
        {
            "start": 833147717,
            "stop": 833183575
        },
        {
            "start": 833185562,
            "stop": 833185563
        },
        {
            "start": 833185570,
            "stop": 833199627
        },
        {
            "start": 833201500,
            "stop": 833201502
        },
        {
            "start": 833201530,
            "stop": 833201800
        },
        {
            "start": 833203342,
            "stop": 833203365
        },
        {
            "start": 833203588,
            "stop": 833203715
        },
        {
            "start": 833212823,
            "stop": 833213949
        },
        {
            "start": 833214763,
            "stop": 833217154
        },
        {
            "start": 833217280,
            "stop": 833218541
        },
        {
            "start": 833218808,
            "stop": 833219219
        },
        {
            "start": 833219563,
            "stop": 833222204
        },
        {
            "start": 833222349,
            "stop": 833222521
        },
        {
            "start": 833225490,
            "stop": 833225598
        },
        {
            "start": 833225768,
            "stop": 833225821
        },
        {
            "start": 833226052,
            "stop": 833226752
        },
        {
            "start": 833228352,
            "stop": 833228508
        },
        {
            "start": 833228725,
            "stop": 833228810
        },
        {
            "start": 833228930,
            "stop": 833229731
        }
    ]
}