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=10100
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=10101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10099",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10100,
    "results": [
        {
            "start": 873323605,
            "stop": 873323650
        },
        {
            "start": 873323773,
            "stop": 873323963
        },
        {
            "start": 873324011,
            "stop": 873324300
        },
        {
            "start": 873324360,
            "stop": 873324629
        },
        {
            "start": 873324637,
            "stop": 873324648
        },
        {
            "start": 873324655,
            "stop": 873324828
        },
        {
            "start": 873324835,
            "stop": 873325080
        },
        {
            "start": 873325140,
            "stop": 873325440
        },
        {
            "start": 873325560,
            "stop": 873325860
        },
        {
            "start": 873325980,
            "stop": 873326220
        },
        {
            "start": 873326400,
            "stop": 873326460
        },
        {
            "start": 873330621,
            "stop": 873330633
        },
        {
            "start": 873330722,
            "stop": 873330740
        },
        {
            "start": 873330804,
            "stop": 873330856
        },
        {
            "start": 873330890,
            "stop": 873331206
        },
        {
            "start": 873331213,
            "stop": 873331320
        },
        {
            "start": 873331572,
            "stop": 873331588
        },
        {
            "start": 873331595,
            "stop": 873331724
        },
        {
            "start": 873331741,
            "stop": 873332015
        },
        {
            "start": 873332022,
            "stop": 873332134
        }
    ]
}