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=202
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=203",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=201",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 202,
    "results": [
        {
            "start": 850985450,
            "stop": 851003198
        },
        {
            "start": 851005401,
            "stop": 851005567
        },
        {
            "start": 851005707,
            "stop": 851050029
        },
        {
            "start": 851053844,
            "stop": 851056213
        },
        {
            "start": 851056333,
            "stop": 851062615
        },
        {
            "start": 851131809,
            "stop": 851132360
        },
        {
            "start": 851133823,
            "stop": 851149962
        },
        {
            "start": 851152118,
            "stop": 851159768
        },
        {
            "start": 851161265,
            "stop": 851170178
        },
        {
            "start": 851171301,
            "stop": 851171815
        },
        {
            "start": 851195981,
            "stop": 851196056
        },
        {
            "start": 851197305,
            "stop": 851202371
        },
        {
            "start": 851202465,
            "stop": 851226437
        },
        {
            "start": 851228739,
            "stop": 851237080
        },
        {
            "start": 851240648,
            "stop": 851244123
        },
        {
            "start": 851244497,
            "stop": 851247483
        },
        {
            "start": 851251313,
            "stop": 851264544
        },
        {
            "start": 851304026,
            "stop": 851310357
        },
        {
            "start": 851310402,
            "stop": 851312611
        },
        {
            "start": 851313196,
            "stop": 851326408
        }
    ]
}