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=42
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=43",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=41",
    "results_count": 17965,
    "results_per_page": 20,
    "num_pages": 899,
    "page_number": 42,
    "results": [
        {
            "start": 931506115,
            "stop": 931506117
        },
        {
            "start": 931506124,
            "stop": 931506128
        },
        {
            "start": 931506135,
            "stop": 931506166
        },
        {
            "start": 931506173,
            "stop": 931506198
        },
        {
            "start": 931506205,
            "stop": 931506218
        },
        {
            "start": 931506237,
            "stop": 931506249
        },
        {
            "start": 931506256,
            "stop": 931506259
        },
        {
            "start": 931506284,
            "stop": 931506290
        },
        {
            "start": 931506302,
            "stop": 931506312
        },
        {
            "start": 931506319,
            "stop": 931506332
        },
        {
            "start": 931506346,
            "stop": 931506353
        },
        {
            "start": 931506360,
            "stop": 931506361
        },
        {
            "start": 931506382,
            "stop": 931506385
        },
        {
            "start": 931506407,
            "stop": 931506426
        },
        {
            "start": 931506443,
            "stop": 931506453
        },
        {
            "start": 931506460,
            "stop": 931506467
        },
        {
            "start": 931506476,
            "stop": 931506477
        },
        {
            "start": 931506486,
            "stop": 931506502
        },
        {
            "start": 931506509,
            "stop": 931506517
        },
        {
            "start": 931506523,
            "stop": 931506543
        }
    ]
}