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=9
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=10",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=8",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 9,
    "results": [
        {
            "start": 816573266,
            "stop": 816589889
        },
        {
            "start": 816589892,
            "stop": 816596820
        },
        {
            "start": 816596823,
            "stop": 816603815
        },
        {
            "start": 816603817,
            "stop": 816618515
        },
        {
            "start": 816618518,
            "stop": 816623306
        },
        {
            "start": 816625941,
            "stop": 816626701
        },
        {
            "start": 816626703,
            "stop": 816626753
        },
        {
            "start": 816626914,
            "stop": 816630157
        },
        {
            "start": 816633130,
            "stop": 816633660
        },
        {
            "start": 816634759,
            "stop": 816635129
        },
        {
            "start": 816635861,
            "stop": 816636906
        },
        {
            "start": 816636908,
            "stop": 816636938
        },
        {
            "start": 816636954,
            "stop": 816637692
        },
        {
            "start": 816650176,
            "stop": 816656394
        },
        {
            "start": 816656397,
            "stop": 816657324
        },
        {
            "start": 816660712,
            "stop": 816674838
        },
        {
            "start": 816676286,
            "stop": 816703812
        },
        {
            "start": 816703815,
            "stop": 816707726
        },
        {
            "start": 816709659,
            "stop": 816710434
        },
        {
            "start": 816776371,
            "stop": 816776380
        }
    ]
}