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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=5008",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=5006",
    "results_count": 104500,
    "results_per_page": 20,
    "num_pages": 5225,
    "page_number": 5007,
    "results": [
        {
            "start": 874506713,
            "stop": 874506733
        },
        {
            "start": 874506752,
            "stop": 874506907
        },
        {
            "start": 874506932,
            "stop": 874507012
        },
        {
            "start": 874507046,
            "stop": 874507138
        },
        {
            "start": 874507157,
            "stop": 874507232
        },
        {
            "start": 874507251,
            "stop": 874507391
        },
        {
            "start": 874507410,
            "stop": 874507457
        },
        {
            "start": 874507476,
            "stop": 874507687
        },
        {
            "start": 874507707,
            "stop": 874507726
        },
        {
            "start": 874507747,
            "stop": 874507844
        },
        {
            "start": 874507863,
            "stop": 874507924
        },
        {
            "start": 874507948,
            "stop": 874507998
        },
        {
            "start": 874508017,
            "stop": 874508032
        },
        {
            "start": 874508053,
            "stop": 874508064
        },
        {
            "start": 874508083,
            "stop": 874508117
        },
        {
            "start": 874508160,
            "stop": 874508180
        },
        {
            "start": 874508216,
            "stop": 874508256
        },
        {
            "start": 874508275,
            "stop": 874508314
        },
        {
            "start": 874508366,
            "stop": 874508400
        },
        {
            "start": 874508500,
            "stop": 874508599
        }
    ]
}