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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT2/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT2/segments?format=api&page=199",
    "results_count": 15160,
    "results_per_page": 20,
    "num_pages": 758,
    "page_number": 200,
    "results": [
        {
            "start": 821666665,
            "stop": 821666668
        },
        {
            "start": 821666671,
            "stop": 821666673
        },
        {
            "start": 821666676,
            "stop": 821666678
        },
        {
            "start": 821666681,
            "stop": 821666694
        },
        {
            "start": 821666697,
            "stop": 821666699
        },
        {
            "start": 821666702,
            "stop": 821666704
        },
        {
            "start": 821666707,
            "stop": 821666709
        },
        {
            "start": 821666715,
            "stop": 821666722
        },
        {
            "start": 821666728,
            "stop": 821666734
        },
        {
            "start": 821666737,
            "stop": 821666747
        },
        {
            "start": 821666750,
            "stop": 821666767
        },
        {
            "start": 821666772,
            "stop": 821666787
        },
        {
            "start": 821666791,
            "stop": 821666794
        },
        {
            "start": 821666797,
            "stop": 821666798
        },
        {
            "start": 821666801,
            "stop": 821666807
        },
        {
            "start": 821666813,
            "stop": 821666823
        },
        {
            "start": 821666826,
            "stop": 821666852
        },
        {
            "start": 821666859,
            "stop": 821666860
        },
        {
            "start": 821666864,
            "stop": 821666866
        },
        {
            "start": 821666869,
            "stop": 821666872
        }
    ]
}