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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=4568",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=4566",
    "results_count": 97650,
    "results_per_page": 20,
    "num_pages": 4883,
    "page_number": 4567,
    "results": [
        {
            "start": 968856268,
            "stop": 968856560
        },
        {
            "start": 968856577,
            "stop": 968856608
        },
        {
            "start": 968856611,
            "stop": 968856723
        },
        {
            "start": 968858460,
            "stop": 968859211
        },
        {
            "start": 968859214,
            "stop": 968859276
        },
        {
            "start": 968859279,
            "stop": 968859307
        },
        {
            "start": 968859310,
            "stop": 968859969
        },
        {
            "start": 968859972,
            "stop": 968860349
        },
        {
            "start": 968860352,
            "stop": 968860658
        },
        {
            "start": 968862335,
            "stop": 968862931
        },
        {
            "start": 968862934,
            "stop": 968862994
        },
        {
            "start": 968862997,
            "stop": 968863319
        },
        {
            "start": 968863322,
            "stop": 968863538
        },
        {
            "start": 968863541,
            "stop": 968863586
        },
        {
            "start": 968863589,
            "stop": 968863843
        },
        {
            "start": 968863846,
            "stop": 968864019
        },
        {
            "start": 968864022,
            "stop": 968864495
        },
        {
            "start": 968864498,
            "stop": 968864709
        },
        {
            "start": 968864712,
            "stop": 968865060
        },
        {
            "start": 968865063,
            "stop": 968865282
        }
    ]
}