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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5092",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5090",
    "results_count": 106145,
    "results_per_page": 20,
    "num_pages": 5308,
    "page_number": 5091,
    "results": [
        {
            "start": 873260632,
            "stop": 873261860
        },
        {
            "start": 873261868,
            "stop": 873262795
        },
        {
            "start": 873262805,
            "stop": 873262829
        },
        {
            "start": 873262846,
            "stop": 873264341
        },
        {
            "start": 873264595,
            "stop": 873264923
        },
        {
            "start": 873264930,
            "stop": 873265168
        },
        {
            "start": 873265185,
            "stop": 873265579
        },
        {
            "start": 873265586,
            "stop": 873266130
        },
        {
            "start": 873266137,
            "stop": 873266840
        },
        {
            "start": 873266857,
            "stop": 873267361
        },
        {
            "start": 873267378,
            "stop": 873267828
        },
        {
            "start": 873267835,
            "stop": 873268588
        },
        {
            "start": 873268596,
            "stop": 873269702
        },
        {
            "start": 873269719,
            "stop": 873269861
        },
        {
            "start": 873269897,
            "stop": 873270544
        },
        {
            "start": 873270552,
            "stop": 873271307
        },
        {
            "start": 873271324,
            "stop": 873271802
        },
        {
            "start": 873271809,
            "stop": 873271884
        },
        {
            "start": 873271901,
            "stop": 873273419
        },
        {
            "start": 873273427,
            "stop": 873274120
        }
    ]
}