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/H2_CBCHIGH_CAT2/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/H2_CBCHIGH_CAT2/segments?format=api&page=12",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT2/segments?format=api&page=10",
    "results_count": 17534,
    "results_per_page": 20,
    "num_pages": 877,
    "page_number": 11,
    "results": [
        {
            "start": 815717558,
            "stop": 815725948
        },
        {
            "start": 815725951,
            "stop": 815726169
        },
        {
            "start": 815726172,
            "stop": 815734224
        },
        {
            "start": 815751076,
            "stop": 815752009
        },
        {
            "start": 815752012,
            "stop": 815752675
        },
        {
            "start": 815752677,
            "stop": 815762619
        },
        {
            "start": 815762621,
            "stop": 815763330
        },
        {
            "start": 815763390,
            "stop": 815765345
        },
        {
            "start": 815765346,
            "stop": 815766689
        },
        {
            "start": 815776688,
            "stop": 815776950
        },
        {
            "start": 815777010,
            "stop": 815782499
        },
        {
            "start": 815782502,
            "stop": 815785267
        },
        {
            "start": 815785269,
            "stop": 815785290
        },
        {
            "start": 815785350,
            "stop": 815785470
        },
        {
            "start": 815785530,
            "stop": 815787139
        },
        {
            "start": 815787141,
            "stop": 815787990
        },
        {
            "start": 815788050,
            "stop": 815788290
        },
        {
            "start": 815788530,
            "stop": 815788950
        },
        {
            "start": 815790062,
            "stop": 815790390
        },
        {
            "start": 815790450,
            "stop": 815791290
        }
    ]
}