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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2002",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2000",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2001,
    "results": [
        {
            "start": 857512124,
            "stop": 857512217
        },
        {
            "start": 857512517,
            "stop": 857514030
        },
        {
            "start": 857514390,
            "stop": 857514478
        },
        {
            "start": 857514778,
            "stop": 857516234
        },
        {
            "start": 857517557,
            "stop": 857517774
        },
        {
            "start": 857517777,
            "stop": 857517947
        },
        {
            "start": 857517950,
            "stop": 857518092
        },
        {
            "start": 857518333,
            "stop": 857521770
        },
        {
            "start": 857521950,
            "stop": 857522141
        },
        {
            "start": 857522486,
            "stop": 857529105
        },
        {
            "start": 857529448,
            "stop": 857530814
        },
        {
            "start": 857531234,
            "stop": 857536710
        },
        {
            "start": 857536830,
            "stop": 857544210
        },
        {
            "start": 857544635,
            "stop": 857548675
        },
        {
            "start": 857548677,
            "stop": 857551657
        },
        {
            "start": 857551957,
            "stop": 857559063
        },
        {
            "start": 857559363,
            "stop": 857574690
        },
        {
            "start": 857574750,
            "stop": 857581909
        },
        {
            "start": 857582356,
            "stop": 857582564
        },
        {
            "start": 857582864,
            "stop": 857591710
        }
    ]
}