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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=98",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 99,
    "results": [
        {
            "start": 825686876,
            "stop": 825691701
        },
        {
            "start": 825691704,
            "stop": 825691756
        },
        {
            "start": 825691759,
            "stop": 825696073
        },
        {
            "start": 825696106,
            "stop": 825696107
        },
        {
            "start": 825697158,
            "stop": 825700112
        },
        {
            "start": 825700115,
            "stop": 825701643
        },
        {
            "start": 825701647,
            "stop": 825706496
        },
        {
            "start": 825706528,
            "stop": 825711358
        },
        {
            "start": 825711361,
            "stop": 825714000
        },
        {
            "start": 825714003,
            "stop": 825714044
        },
        {
            "start": 825714052,
            "stop": 825714054
        },
        {
            "start": 825714060,
            "stop": 825714076
        },
        {
            "start": 825714080,
            "stop": 825720193
        },
        {
            "start": 825720224,
            "stop": 825720225
        },
        {
            "start": 825720346,
            "stop": 825721824
        },
        {
            "start": 825721856,
            "stop": 825722259
        },
        {
            "start": 825722407,
            "stop": 825723703
        },
        {
            "start": 825723706,
            "stop": 825724028
        },
        {
            "start": 825724031,
            "stop": 825730592
        },
        {
            "start": 825730624,
            "stop": 825738656
        }
    ]
}