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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=302",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=300",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 301,
    "results": [
        {
            "start": 818596829,
            "stop": 818597240
        },
        {
            "start": 818597259,
            "stop": 818599634
        },
        {
            "start": 818599656,
            "stop": 818599682
        },
        {
            "start": 818599703,
            "stop": 818599802
        },
        {
            "start": 818599822,
            "stop": 818599866
        },
        {
            "start": 818599926,
            "stop": 818600026
        },
        {
            "start": 818600056,
            "stop": 818600120
        },
        {
            "start": 818600141,
            "stop": 818600341
        },
        {
            "start": 818600361,
            "stop": 818600542
        },
        {
            "start": 818600583,
            "stop": 818600643
        },
        {
            "start": 818600674,
            "stop": 818600786
        },
        {
            "start": 818600826,
            "stop": 818600841
        },
        {
            "start": 818600891,
            "stop": 818600921
        },
        {
            "start": 818600942,
            "stop": 818601001
        },
        {
            "start": 818601021,
            "stop": 818601282
        },
        {
            "start": 818601303,
            "stop": 818601310
        },
        {
            "start": 818601331,
            "stop": 818601573
        },
        {
            "start": 818601594,
            "stop": 818601600
        },
        {
            "start": 818601621,
            "stop": 818601642
        },
        {
            "start": 818601663,
            "stop": 818601702
        }
    ]
}