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=99
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=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT2/segments?format=api&page=98",
    "results_count": 15160,
    "results_per_page": 20,
    "num_pages": 758,
    "page_number": 99,
    "results": [
        {
            "start": 821471645,
            "stop": 821471691
        },
        {
            "start": 821471694,
            "stop": 821471714
        },
        {
            "start": 821471719,
            "stop": 821471856
        },
        {
            "start": 821471859,
            "stop": 821471875
        },
        {
            "start": 821471878,
            "stop": 821471968
        },
        {
            "start": 821471971,
            "stop": 821471984
        },
        {
            "start": 821471987,
            "stop": 821472128
        },
        {
            "start": 821472131,
            "stop": 821472134
        },
        {
            "start": 821472137,
            "stop": 821473871
        },
        {
            "start": 821474164,
            "stop": 821474406
        },
        {
            "start": 821474413,
            "stop": 821476668
        },
        {
            "start": 821476671,
            "stop": 821476791
        },
        {
            "start": 821476794,
            "stop": 821476936
        },
        {
            "start": 821476939,
            "stop": 821476961
        },
        {
            "start": 821476964,
            "stop": 821477011
        },
        {
            "start": 821477014,
            "stop": 821477038
        },
        {
            "start": 821477041,
            "stop": 821477050
        },
        {
            "start": 821477055,
            "stop": 821477113
        },
        {
            "start": 821477118,
            "stop": 821477145
        },
        {
            "start": 821477148,
            "stop": 821477211
        }
    ]
}