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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=121",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=119",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 120,
    "results": [
        {
            "start": 832234975,
            "stop": 832271742
        },
        {
            "start": 832278970,
            "stop": 832284633
        },
        {
            "start": 832286650,
            "stop": 832295739
        },
        {
            "start": 832295849,
            "stop": 832296167
        },
        {
            "start": 832299886,
            "stop": 832300138
        },
        {
            "start": 832301777,
            "stop": 832318750
        },
        {
            "start": 832318752,
            "stop": 832331734
        },
        {
            "start": 832337558,
            "stop": 832338007
        },
        {
            "start": 832338307,
            "stop": 832338986
        },
        {
            "start": 832380664,
            "stop": 832401510
        },
        {
            "start": 832402233,
            "stop": 832404310
        },
        {
            "start": 832408387,
            "stop": 832411292
        },
        {
            "start": 832411294,
            "stop": 832423138
        },
        {
            "start": 832451544,
            "stop": 832451784
        },
        {
            "start": 832452084,
            "stop": 832452795
        },
        {
            "start": 832452905,
            "stop": 832453195
        },
        {
            "start": 832453495,
            "stop": 832454311
        },
        {
            "start": 832458911,
            "stop": 832461998
        },
        {
            "start": 832462108,
            "stop": 832462199
        },
        {
            "start": 832462499,
            "stop": 832465138
        }
    ]
}