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=11
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=12",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=10",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 11,
    "results": [
        {
            "start": 816951345,
            "stop": 816952139
        },
        {
            "start": 816953193,
            "stop": 816962630
        },
        {
            "start": 816963358,
            "stop": 816969462
        },
        {
            "start": 816970965,
            "stop": 816971113
        },
        {
            "start": 816974803,
            "stop": 816977575
        },
        {
            "start": 816991143,
            "stop": 816997263
        },
        {
            "start": 816997265,
            "stop": 817000712
        },
        {
            "start": 817000715,
            "stop": 817003847
        },
        {
            "start": 817003849,
            "stop": 817012424
        },
        {
            "start": 817012427,
            "stop": 817015977
        },
        {
            "start": 817015980,
            "stop": 817018425
        },
        {
            "start": 817018428,
            "stop": 817018552
        },
        {
            "start": 817018556,
            "stop": 817031473
        },
        {
            "start": 817034008,
            "stop": 817051924
        },
        {
            "start": 817051927,
            "stop": 817052219
        },
        {
            "start": 817052222,
            "stop": 817067155
        },
        {
            "start": 817067157,
            "stop": 817068234
        },
        {
            "start": 817071048,
            "stop": 817073858
        },
        {
            "start": 817074842,
            "stop": 817076147
        },
        {
            "start": 817076150,
            "stop": 817077420
        }
    ]
}