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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=249",
    "results_count": 9439,
    "results_per_page": 20,
    "num_pages": 472,
    "page_number": 250,
    "results": [
        {
            "start": 852759038,
            "stop": 852794265
        },
        {
            "start": 852795892,
            "stop": 852825572
        },
        {
            "start": 852825872,
            "stop": 852828270
        },
        {
            "start": 852829997,
            "stop": 852833707
        },
        {
            "start": 852833870,
            "stop": 852838640
        },
        {
            "start": 852838751,
            "stop": 852907094
        },
        {
            "start": 852907099,
            "stop": 852920674
        },
        {
            "start": 852924759,
            "stop": 852924934
        },
        {
            "start": 852924965,
            "stop": 852926250
        },
        {
            "start": 852926497,
            "stop": 852926563
        },
        {
            "start": 852926571,
            "stop": 852931187
        },
        {
            "start": 852931195,
            "stop": 852931312
        },
        {
            "start": 852931319,
            "stop": 852931470
        },
        {
            "start": 852931611,
            "stop": 852931645
        },
        {
            "start": 852931945,
            "stop": 852935109
        },
        {
            "start": 852935116,
            "stop": 852940479
        },
        {
            "start": 852940486,
            "stop": 852944373
        },
        {
            "start": 852944380,
            "stop": 852952866
        },
        {
            "start": 852953170,
            "stop": 852953198
        },
        {
            "start": 852953498,
            "stop": 852993702
        }
    ]
}