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=255
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=256",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=254",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 255,
    "results": [
        {
            "start": 857678962,
            "stop": 857681820
        },
        {
            "start": 857682140,
            "stop": 857685997
        },
        {
            "start": 857688330,
            "stop": 857688379
        },
        {
            "start": 857688679,
            "stop": 857692393
        },
        {
            "start": 857692457,
            "stop": 857695468
        },
        {
            "start": 857695578,
            "stop": 857695644
        },
        {
            "start": 857695654,
            "stop": 857695939
        },
        {
            "start": 857696239,
            "stop": 857706568
        },
        {
            "start": 857706678,
            "stop": 857707166
        },
        {
            "start": 857707210,
            "stop": 857707240
        },
        {
            "start": 857707677,
            "stop": 857715433
        },
        {
            "start": 857715733,
            "stop": 857718192
        },
        {
            "start": 857718293,
            "stop": 857725622
        },
        {
            "start": 857725624,
            "stop": 857733042
        },
        {
            "start": 857733328,
            "stop": 857733442
        },
        {
            "start": 857733527,
            "stop": 857733792
        },
        {
            "start": 857733861,
            "stop": 857734232
        },
        {
            "start": 857734298,
            "stop": 857734824
        },
        {
            "start": 857734911,
            "stop": 857735165
        },
        {
            "start": 857735221,
            "stop": 857735288
        }
    ]
}