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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=9003",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=9001",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 9002,
    "results": [
        {
            "start": 873956768,
            "stop": 873957217
        },
        {
            "start": 873957236,
            "stop": 873957652
        },
        {
            "start": 873957671,
            "stop": 873957763
        },
        {
            "start": 873957780,
            "stop": 873957927
        },
        {
            "start": 873957946,
            "stop": 873957985
        },
        {
            "start": 873958002,
            "stop": 873958592
        },
        {
            "start": 873958611,
            "stop": 873959244
        },
        {
            "start": 873959264,
            "stop": 873959758
        },
        {
            "start": 873959775,
            "stop": 873960055
        },
        {
            "start": 873960075,
            "stop": 873960485
        },
        {
            "start": 873960502,
            "stop": 873960522
        },
        {
            "start": 873960541,
            "stop": 873961015
        },
        {
            "start": 873961034,
            "stop": 873961729
        },
        {
            "start": 873961748,
            "stop": 873961783
        },
        {
            "start": 873961827,
            "stop": 873961867
        },
        {
            "start": 873961886,
            "stop": 873962002
        },
        {
            "start": 873962019,
            "stop": 873962101
        },
        {
            "start": 873962118,
            "stop": 873962742
        },
        {
            "start": 873962761,
            "stop": 873962912
        },
        {
            "start": 873962931,
            "stop": 873963200
        }
    ]
}