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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=99",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 100,
    "results": [
        {
            "start": 832882807,
            "stop": 832885317
        },
        {
            "start": 832888210,
            "stop": 832904359
        },
        {
            "start": 832904753,
            "stop": 832939857
        },
        {
            "start": 832940414,
            "stop": 832951417
        },
        {
            "start": 832951743,
            "stop": 833006745
        },
        {
            "start": 833009901,
            "stop": 833025794
        },
        {
            "start": 833025933,
            "stop": 833026396
        },
        {
            "start": 833026540,
            "stop": 833026800
        },
        {
            "start": 833027004,
            "stop": 833027086
        },
        {
            "start": 833029164,
            "stop": 833030379
        },
        {
            "start": 833035000,
            "stop": 833036373
        },
        {
            "start": 833059422,
            "stop": 833096366
        },
        {
            "start": 833098960,
            "stop": 833110516
        },
        {
            "start": 833111376,
            "stop": 833111445
        },
        {
            "start": 833117921,
            "stop": 833118748
        },
        {
            "start": 833122044,
            "stop": 833122379
        },
        {
            "start": 833125514,
            "stop": 833126034
        },
        {
            "start": 833127644,
            "stop": 833129256
        },
        {
            "start": 833130566,
            "stop": 833132423
        },
        {
            "start": 833142571,
            "stop": 833142997
        }
    ]
}