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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=199",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 200,
    "results": [
        {
            "start": 839302795,
            "stop": 839302800
        },
        {
            "start": 839302804,
            "stop": 839302862
        },
        {
            "start": 839302872,
            "stop": 839302877
        },
        {
            "start": 839302901,
            "stop": 839302915
        },
        {
            "start": 839302920,
            "stop": 839302963
        },
        {
            "start": 839302981,
            "stop": 839302987
        },
        {
            "start": 839302991,
            "stop": 839303006
        },
        {
            "start": 839303010,
            "stop": 839303015
        },
        {
            "start": 839303019,
            "stop": 839303039
        },
        {
            "start": 839303044,
            "stop": 839303134
        },
        {
            "start": 839303138,
            "stop": 839303179
        },
        {
            "start": 839303183,
            "stop": 839303198
        },
        {
            "start": 839303202,
            "stop": 839303241
        },
        {
            "start": 839303251,
            "stop": 839303261
        },
        {
            "start": 839303265,
            "stop": 839303280
        },
        {
            "start": 839303289,
            "stop": 839303295
        },
        {
            "start": 839303299,
            "stop": 839303309
        },
        {
            "start": 839303313,
            "stop": 839303338
        },
        {
            "start": 839303347,
            "stop": 839303362
        },
        {
            "start": 839303366,
            "stop": 839303390
        }
    ]
}