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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=129",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=127",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 128,
    "results": [
        {
            "start": 817876593,
            "stop": 817876654
        },
        {
            "start": 817876662,
            "stop": 817876943
        },
        {
            "start": 817876947,
            "stop": 817876948
        },
        {
            "start": 817876957,
            "stop": 817876960
        },
        {
            "start": 817876964,
            "stop": 817877051
        },
        {
            "start": 817877054,
            "stop": 817877167
        },
        {
            "start": 817877170,
            "stop": 817877192
        },
        {
            "start": 817877196,
            "stop": 817877274
        },
        {
            "start": 817877278,
            "stop": 817877338
        },
        {
            "start": 817877341,
            "stop": 817877459
        },
        {
            "start": 817877466,
            "stop": 817877478
        },
        {
            "start": 817877481,
            "stop": 817877492
        },
        {
            "start": 817877495,
            "stop": 817877644
        },
        {
            "start": 817877648,
            "stop": 817877668
        },
        {
            "start": 817877671,
            "stop": 817877674
        },
        {
            "start": 817877681,
            "stop": 817877848
        },
        {
            "start": 817877851,
            "stop": 817877881
        },
        {
            "start": 817877888,
            "stop": 817877981
        },
        {
            "start": 817877985,
            "stop": 817878018
        },
        {
            "start": 817878021,
            "stop": 817878027
        }
    ]
}