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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2/segments?format=api&page=457",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2/segments?format=api&page=455",
    "results_count": 11686,
    "results_per_page": 20,
    "num_pages": 585,
    "page_number": 456,
    "results": [
        {
            "start": 863975624,
            "stop": 863977652
        },
        {
            "start": 863977982,
            "stop": 863978999
        },
        {
            "start": 863980125,
            "stop": 863981914
        },
        {
            "start": 863981920,
            "stop": 863982658
        },
        {
            "start": 863983982,
            "stop": 863984082
        },
        {
            "start": 863985229,
            "stop": 863991320
        },
        {
            "start": 863991325,
            "stop": 863993557
        },
        {
            "start": 863993859,
            "stop": 863995980
        },
        {
            "start": 863996040,
            "stop": 864014655
        },
        {
            "start": 864014765,
            "stop": 864014919
        },
        {
            "start": 864015219,
            "stop": 864015265
        },
        {
            "start": 864015375,
            "stop": 864015765
        },
        {
            "start": 864016065,
            "stop": 864052182
        },
        {
            "start": 864052188,
            "stop": 864052200
        },
        {
            "start": 864052260,
            "stop": 864052262
        },
        {
            "start": 864052268,
            "stop": 864058700
        },
        {
            "start": 864059885,
            "stop": 864061030
        },
        {
            "start": 864061038,
            "stop": 864062667
        },
        {
            "start": 864062833,
            "stop": 864069037
        },
        {
            "start": 864070379,
            "stop": 864080057
        }
    ]
}