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=2005
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=2006",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2004",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2005,
    "results": [
        {
            "start": 857732872,
            "stop": 857732880
        },
        {
            "start": 857732881,
            "stop": 857732883
        },
        {
            "start": 857732886,
            "stop": 857732910
        },
        {
            "start": 857732970,
            "stop": 857732973
        },
        {
            "start": 857732979,
            "stop": 857733026
        },
        {
            "start": 857733027,
            "stop": 857733029
        },
        {
            "start": 857733030,
            "stop": 857733042
        },
        {
            "start": 857733328,
            "stop": 857733330
        },
        {
            "start": 857733691,
            "stop": 857733693
        },
        {
            "start": 857733694,
            "stop": 857733696
        },
        {
            "start": 857733699,
            "stop": 857733715
        },
        {
            "start": 857733716,
            "stop": 857733719
        },
        {
            "start": 857733721,
            "stop": 857733782
        },
        {
            "start": 857733783,
            "stop": 857733784
        },
        {
            "start": 857733786,
            "stop": 857733790
        },
        {
            "start": 857733870,
            "stop": 857733899
        },
        {
            "start": 857733901,
            "stop": 857733919
        },
        {
            "start": 857733922,
            "stop": 857733930
        },
        {
            "start": 857733990,
            "stop": 857734023
        },
        {
            "start": 857734025,
            "stop": 857734034
        }
    ]
}