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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT4/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT4/segments?format=api&page=110",
    "results_count": 199168,
    "results_per_page": 20,
    "num_pages": 9959,
    "page_number": 111,
    "results": [
        {
            "start": 818575445,
            "stop": 818575609
        },
        {
            "start": 818577371,
            "stop": 818582558
        },
        {
            "start": 818582575,
            "stop": 818586307
        },
        {
            "start": 818586325,
            "stop": 818591982
        },
        {
            "start": 818591999,
            "stop": 818596020
        },
        {
            "start": 818596080,
            "stop": 818603306
        },
        {
            "start": 818603310,
            "stop": 818603828
        },
        {
            "start": 818603845,
            "stop": 818604096
        },
        {
            "start": 818606090,
            "stop": 818609100
        },
        {
            "start": 818609160,
            "stop": 818609280
        },
        {
            "start": 818609400,
            "stop": 818609700
        },
        {
            "start": 818609820,
            "stop": 818610000
        },
        {
            "start": 818610060,
            "stop": 818611008
        },
        {
            "start": 818611128,
            "stop": 818611320
        },
        {
            "start": 818611380,
            "stop": 818611920
        },
        {
            "start": 818611980,
            "stop": 818612160
        },
        {
            "start": 818612280,
            "stop": 818612640
        },
        {
            "start": 818612700,
            "stop": 818612760
        },
        {
            "start": 818612820,
            "stop": 818613060
        },
        {
            "start": 818613180,
            "stop": 818613300
        }
    ]
}