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=234
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=235",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=233",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 234,
    "results": [
        {
            "start": 857804234,
            "stop": 857828945
        },
        {
            "start": 857831024,
            "stop": 857833989
        },
        {
            "start": 857877345,
            "stop": 857893892
        },
        {
            "start": 857895337,
            "stop": 857907806
        },
        {
            "start": 857908714,
            "stop": 857917144
        },
        {
            "start": 857918124,
            "stop": 857924067
        },
        {
            "start": 857924246,
            "stop": 857931276
        },
        {
            "start": 857932774,
            "stop": 857939247
        },
        {
            "start": 857940548,
            "stop": 857945554
        },
        {
            "start": 857947961,
            "stop": 857975510
        },
        {
            "start": 857976339,
            "stop": 857976626
        },
        {
            "start": 857977691,
            "stop": 857978842
        },
        {
            "start": 857978923,
            "stop": 857980227
        },
        {
            "start": 857980281,
            "stop": 857999979
        },
        {
            "start": 858001808,
            "stop": 858007994
        },
        {
            "start": 858009252,
            "stop": 858017268
        },
        {
            "start": 858036138,
            "stop": 858036788
        },
        {
            "start": 858037658,
            "stop": 858041876
        },
        {
            "start": 858045084,
            "stop": 858066543
        },
        {
            "start": 858068162,
            "stop": 858104953
        }
    ]
}