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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT4/segments?format=api&page=151",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT4/segments?format=api&page=149",
    "results_count": 177886,
    "results_per_page": 20,
    "num_pages": 8895,
    "page_number": 150,
    "results": [
        {
            "start": 819965644,
            "stop": 819965712
        },
        {
            "start": 819965719,
            "stop": 819965783
        },
        {
            "start": 819965790,
            "stop": 819965877
        },
        {
            "start": 819965885,
            "stop": 819965937
        },
        {
            "start": 819965951,
            "stop": 819965953
        },
        {
            "start": 819966143,
            "stop": 819966273
        },
        {
            "start": 819966281,
            "stop": 819966282
        },
        {
            "start": 819966290,
            "stop": 819966441
        },
        {
            "start": 819966448,
            "stop": 819966534
        },
        {
            "start": 819966542,
            "stop": 819966628
        },
        {
            "start": 819966635,
            "stop": 819967041
        },
        {
            "start": 819967048,
            "stop": 819967185
        },
        {
            "start": 819967198,
            "stop": 819967205
        },
        {
            "start": 819967218,
            "stop": 819967239
        },
        {
            "start": 819967246,
            "stop": 819967266
        },
        {
            "start": 819967273,
            "stop": 819967564
        },
        {
            "start": 819967571,
            "stop": 819967756
        },
        {
            "start": 819967763,
            "stop": 819967801
        },
        {
            "start": 819967814,
            "stop": 819967903
        },
        {
            "start": 819967911,
            "stop": 819968081
        }
    ]
}