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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=98",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 99,
    "results": [
        {
            "start": 816681391,
            "stop": 816681414
        },
        {
            "start": 816681417,
            "stop": 816681667
        },
        {
            "start": 816681674,
            "stop": 816681701
        },
        {
            "start": 816681709,
            "stop": 816681718
        },
        {
            "start": 816681725,
            "stop": 816681789
        },
        {
            "start": 816681797,
            "stop": 816681818
        },
        {
            "start": 816681821,
            "stop": 816681847
        },
        {
            "start": 816681881,
            "stop": 816681930
        },
        {
            "start": 816681934,
            "stop": 816681948
        },
        {
            "start": 816681955,
            "stop": 816682050
        },
        {
            "start": 816683010,
            "stop": 816683038
        },
        {
            "start": 816683070,
            "stop": 816683085
        },
        {
            "start": 816683092,
            "stop": 816683098
        },
        {
            "start": 816683101,
            "stop": 816683146
        },
        {
            "start": 816683175,
            "stop": 816683218
        },
        {
            "start": 816683222,
            "stop": 816683391
        },
        {
            "start": 816683395,
            "stop": 816683399
        },
        {
            "start": 816683402,
            "stop": 816683643
        },
        {
            "start": 816683655,
            "stop": 816683674
        },
        {
            "start": 816683711,
            "stop": 816683728
        }
    ]
}