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=53
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=54",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=52",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 53,
    "results": [
        {
            "start": 822489874,
            "stop": 822491970
        },
        {
            "start": 822492074,
            "stop": 822492983
        },
        {
            "start": 822493283,
            "stop": 822494011
        },
        {
            "start": 822494164,
            "stop": 822494330
        },
        {
            "start": 822494405,
            "stop": 822494561
        },
        {
            "start": 822494861,
            "stop": 822495523
        },
        {
            "start": 822495631,
            "stop": 822495821
        },
        {
            "start": 822495913,
            "stop": 822496124
        },
        {
            "start": 822496250,
            "stop": 822496453
        },
        {
            "start": 822510610,
            "stop": 822511112
        },
        {
            "start": 822511272,
            "stop": 822511513
        },
        {
            "start": 822531425,
            "stop": 822535309
        },
        {
            "start": 822536379,
            "stop": 822537693
        },
        {
            "start": 822537879,
            "stop": 822539296
        },
        {
            "start": 822539460,
            "stop": 822539979
        },
        {
            "start": 822540137,
            "stop": 822540486
        },
        {
            "start": 822540542,
            "stop": 822540795
        },
        {
            "start": 822541018,
            "stop": 822541916
        },
        {
            "start": 822542026,
            "stop": 822542038
        },
        {
            "start": 822542489,
            "stop": 822542916
        }
    ]
}