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_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/S6/timelines/L1_CW_CAT1/segments?format=api&page=129",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=127",
    "results_count": 3094,
    "results_per_page": 20,
    "num_pages": 155,
    "page_number": 128,
    "results": [
        {
            "start": 964414166,
            "stop": 964436980
        },
        {
            "start": 964440480,
            "stop": 964440605
        },
        {
            "start": 964442950,
            "stop": 964443038
        },
        {
            "start": 964445470,
            "stop": 964445995
        },
        {
            "start": 964452644,
            "stop": 964473780
        },
        {
            "start": 964477933,
            "stop": 964480208
        },
        {
            "start": 964486806,
            "stop": 964488866
        },
        {
            "start": 964509216,
            "stop": 964510295
        },
        {
            "start": 964512146,
            "stop": 964517155
        },
        {
            "start": 964518411,
            "stop": 964529964
        },
        {
            "start": 964533955,
            "stop": 964563695
        },
        {
            "start": 964565656,
            "stop": 964574413
        },
        {
            "start": 964574965,
            "stop": 964583390
        },
        {
            "start": 964583415,
            "stop": 964605293
        },
        {
            "start": 964607360,
            "stop": 964613321
        },
        {
            "start": 964614103,
            "stop": 964620175
        },
        {
            "start": 964620669,
            "stop": 964630026
        },
        {
            "start": 964631348,
            "stop": 964631496
        },
        {
            "start": 964634528,
            "stop": 964639164
        },
        {
            "start": 964640820,
            "stop": 964654966
        }
    ]
}