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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT4/segments?format=api&page=4322",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT4/segments?format=api&page=4320",
    "results_count": 88504,
    "results_per_page": 20,
    "num_pages": 4426,
    "page_number": 4321,
    "results": [
        {
            "start": 874711526,
            "stop": 874711551
        },
        {
            "start": 874711570,
            "stop": 874711589
        },
        {
            "start": 874711609,
            "stop": 874711622
        },
        {
            "start": 874711641,
            "stop": 874711659
        },
        {
            "start": 874711678,
            "stop": 874711687
        },
        {
            "start": 874711709,
            "stop": 874711752
        },
        {
            "start": 874711772,
            "stop": 874711826
        },
        {
            "start": 874711885,
            "stop": 874711904
        },
        {
            "start": 874711923,
            "stop": 874711945
        },
        {
            "start": 874711983,
            "stop": 874711984
        },
        {
            "start": 874712003,
            "stop": 874712076
        },
        {
            "start": 874712108,
            "stop": 874712152
        },
        {
            "start": 874712171,
            "stop": 874712176
        },
        {
            "start": 874712200,
            "stop": 874712217
        },
        {
            "start": 874712280,
            "stop": 874712309
        },
        {
            "start": 874712353,
            "stop": 874712356
        },
        {
            "start": 874712393,
            "stop": 874712394
        },
        {
            "start": 874712416,
            "stop": 874712474
        },
        {
            "start": 874712643,
            "stop": 874712680
        },
        {
            "start": 874712739,
            "stop": 874712742
        }
    ]
}