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=254
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=255",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=253",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 254,
    "results": [
        {
            "start": 857551957,
            "stop": 857559063
        },
        {
            "start": 857559363,
            "stop": 857581909
        },
        {
            "start": 857582356,
            "stop": 857582564
        },
        {
            "start": 857582864,
            "stop": 857591710
        },
        {
            "start": 857593865,
            "stop": 857596635
        },
        {
            "start": 857597961,
            "stop": 857608152
        },
        {
            "start": 857608689,
            "stop": 857632522
        },
        {
            "start": 857633884,
            "stop": 857636334
        },
        {
            "start": 857636444,
            "stop": 857636533
        },
        {
            "start": 857636833,
            "stop": 857636873
        },
        {
            "start": 857637225,
            "stop": 857639043
        },
        {
            "start": 857641735,
            "stop": 857645155
        },
        {
            "start": 857646464,
            "stop": 857652038
        },
        {
            "start": 857652148,
            "stop": 857652252
        },
        {
            "start": 857652552,
            "stop": 857652623
        },
        {
            "start": 857652923,
            "stop": 857667105
        },
        {
            "start": 857667405,
            "stop": 857667836
        },
        {
            "start": 857669640,
            "stop": 857673218
        },
        {
            "start": 857674535,
            "stop": 857677738
        },
        {
            "start": 857677780,
            "stop": 857678396
        }
    ]
}