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=13
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=14",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=12",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 13,
    "results": [
        {
            "start": 817163372,
            "stop": 817172307
        },
        {
            "start": 817172309,
            "stop": 817178287
        },
        {
            "start": 817179724,
            "stop": 817181740
        },
        {
            "start": 817181743,
            "stop": 817193769
        },
        {
            "start": 817193772,
            "stop": 817194199
        },
        {
            "start": 817194202,
            "stop": 817197853
        },
        {
            "start": 817197856,
            "stop": 817214128
        },
        {
            "start": 817214131,
            "stop": 817218352
        },
        {
            "start": 817219167,
            "stop": 817224039
        },
        {
            "start": 817228513,
            "stop": 817229068
        },
        {
            "start": 817229069,
            "stop": 817231996
        },
        {
            "start": 817236172,
            "stop": 817236643
        },
        {
            "start": 817236943,
            "stop": 817236980
        },
        {
            "start": 817237090,
            "stop": 817237313
        },
        {
            "start": 817237315,
            "stop": 817237684
        },
        {
            "start": 817237686,
            "stop": 817237736
        },
        {
            "start": 817238778,
            "stop": 817238863
        },
        {
            "start": 817239402,
            "stop": 817243338
        },
        {
            "start": 817244187,
            "stop": 817245946
        },
        {
            "start": 817245948,
            "stop": 817246020
        }
    ]
}