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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=4801",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=4799",
    "results_count": 97650,
    "results_per_page": 20,
    "num_pages": 4883,
    "page_number": 4800,
    "results": [
        {
            "start": 970730914,
            "stop": 970731859
        },
        {
            "start": 970731862,
            "stop": 970732871
        },
        {
            "start": 970732874,
            "stop": 970733143
        },
        {
            "start": 970733146,
            "stop": 970733527
        },
        {
            "start": 970733530,
            "stop": 970734006
        },
        {
            "start": 970734009,
            "stop": 970734260
        },
        {
            "start": 970734263,
            "stop": 970734706
        },
        {
            "start": 970734723,
            "stop": 970735346
        },
        {
            "start": 970735349,
            "stop": 970735769
        },
        {
            "start": 970735772,
            "stop": 970736476
        },
        {
            "start": 970736479,
            "stop": 970736608
        },
        {
            "start": 970736611,
            "stop": 970737198
        },
        {
            "start": 970737215,
            "stop": 970737460
        },
        {
            "start": 970737463,
            "stop": 970737778
        },
        {
            "start": 970737781,
            "stop": 970739583
        },
        {
            "start": 970739586,
            "stop": 970739927
        },
        {
            "start": 970739930,
            "stop": 970739959
        },
        {
            "start": 970739962,
            "stop": 970740017
        },
        {
            "start": 970740020,
            "stop": 970741120
        },
        {
            "start": 970741123,
            "stop": 970741627
        }
    ]
}