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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=199",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 200,
    "results": [
        {
            "start": 846545223,
            "stop": 846545686
        },
        {
            "start": 846545844,
            "stop": 846620088
        },
        {
            "start": 846620743,
            "stop": 846623382
        },
        {
            "start": 846623492,
            "stop": 846623500
        },
        {
            "start": 846624913,
            "stop": 846625392
        },
        {
            "start": 846625692,
            "stop": 846632748
        },
        {
            "start": 846633083,
            "stop": 846633406
        },
        {
            "start": 846633706,
            "stop": 846633797
        },
        {
            "start": 846633907,
            "stop": 846634131
        },
        {
            "start": 846634431,
            "stop": 846641626
        },
        {
            "start": 846647923,
            "stop": 846675026
        },
        {
            "start": 846675351,
            "stop": 846675562
        },
        {
            "start": 846675862,
            "stop": 846689897
        },
        {
            "start": 846690275,
            "stop": 846692335
        },
        {
            "start": 846692856,
            "stop": 846698861
        },
        {
            "start": 846699263,
            "stop": 846703306
        },
        {
            "start": 846703887,
            "stop": 846746052
        },
        {
            "start": 846746162,
            "stop": 846746179
        },
        {
            "start": 846746479,
            "stop": 846746931
        },
        {
            "start": 846747041,
            "stop": 846747118
        }
    ]
}