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=128
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=129",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=127",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 128,
    "results": [
        {
            "start": 833214763,
            "stop": 833217133
        },
        {
            "start": 833217153,
            "stop": 833217154
        },
        {
            "start": 833217313,
            "stop": 833218513
        },
        {
            "start": 833218539,
            "stop": 833218541
        },
        {
            "start": 833218813,
            "stop": 833219173
        },
        {
            "start": 833219218,
            "stop": 833219219
        },
        {
            "start": 833219563,
            "stop": 833222173
        },
        {
            "start": 833222203,
            "stop": 833222204
        },
        {
            "start": 833222349,
            "stop": 833222521
        },
        {
            "start": 833225490,
            "stop": 833225593
        },
        {
            "start": 833225596,
            "stop": 833225598
        },
        {
            "start": 833225768,
            "stop": 833225821
        },
        {
            "start": 833226073,
            "stop": 833226733
        },
        {
            "start": 833226750,
            "stop": 833226752
        },
        {
            "start": 833228352,
            "stop": 833228473
        },
        {
            "start": 833228507,
            "stop": 833228508
        },
        {
            "start": 833228725,
            "stop": 833228810
        },
        {
            "start": 833228953,
            "stop": 833229731
        },
        {
            "start": 833231814,
            "stop": 833232673
        },
        {
            "start": 833234193,
            "stop": 833235912
        }
    ]
}