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=256
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=257",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=255",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 256,
    "results": [
        {
            "start": 818220373,
            "stop": 818220376
        },
        {
            "start": 818220397,
            "stop": 818220398
        },
        {
            "start": 818220401,
            "stop": 818220404
        },
        {
            "start": 818220413,
            "stop": 818220415
        },
        {
            "start": 818220419,
            "stop": 818220421
        },
        {
            "start": 818220431,
            "stop": 818220434
        },
        {
            "start": 818220437,
            "stop": 818220446
        },
        {
            "start": 818220450,
            "stop": 818220455
        },
        {
            "start": 818220463,
            "stop": 818220465
        },
        {
            "start": 818220479,
            "stop": 818220480
        },
        {
            "start": 818220509,
            "stop": 818220511
        },
        {
            "start": 818220522,
            "stop": 818220523
        },
        {
            "start": 818220527,
            "stop": 818220530
        },
        {
            "start": 818220536,
            "stop": 818220537
        },
        {
            "start": 818220551,
            "stop": 818220552
        },
        {
            "start": 818220557,
            "stop": 818220560
        },
        {
            "start": 818220563,
            "stop": 818220564
        },
        {
            "start": 818220592,
            "stop": 818220596
        },
        {
            "start": 818220610,
            "stop": 818220611
        },
        {
            "start": 818220624,
            "stop": 818220632
        }
    ]
}