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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=20",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=18",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 19,
    "results": [
        {
            "start": 1126316822,
            "stop": 1126317055
        },
        {
            "start": 1126317056,
            "stop": 1126317455
        },
        {
            "start": 1126317456,
            "stop": 1126317544
        },
        {
            "start": 1126317545,
            "stop": 1126317744
        },
        {
            "start": 1126317745,
            "stop": 1126317932
        },
        {
            "start": 1126317933,
            "stop": 1126318029
        },
        {
            "start": 1126318030,
            "stop": 1126318146
        },
        {
            "start": 1126318147,
            "stop": 1126318243
        },
        {
            "start": 1126318244,
            "stop": 1126318329
        },
        {
            "start": 1126318330,
            "stop": 1126318367
        },
        {
            "start": 1126318368,
            "stop": 1126318736
        },
        {
            "start": 1126318737,
            "stop": 1126319043
        },
        {
            "start": 1126319044,
            "stop": 1126319426
        },
        {
            "start": 1126319427,
            "stop": 1126319532
        },
        {
            "start": 1126319533,
            "stop": 1126319609
        },
        {
            "start": 1126319610,
            "stop": 1126319798
        },
        {
            "start": 1126319800,
            "stop": 1126320101
        },
        {
            "start": 1126320102,
            "stop": 1126320197
        },
        {
            "start": 1126320198,
            "stop": 1126320284
        },
        {
            "start": 1126320285,
            "stop": 1126320482
        }
    ]
}