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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=322",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=320",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 321,
    "results": [
        {
            "start": 855948898,
            "stop": 855949022
        },
        {
            "start": 855949748,
            "stop": 855950222
        },
        {
            "start": 855950226,
            "stop": 855950242
        },
        {
            "start": 855950251,
            "stop": 855950300
        },
        {
            "start": 855950304,
            "stop": 855950315
        },
        {
            "start": 855950319,
            "stop": 855950343
        },
        {
            "start": 855951049,
            "stop": 855951176
        },
        {
            "start": 855951180,
            "stop": 855951287
        },
        {
            "start": 855951301,
            "stop": 855951327
        },
        {
            "start": 855951330,
            "stop": 855951351
        },
        {
            "start": 855951360,
            "stop": 855951458
        },
        {
            "start": 855951476,
            "stop": 855951483
        },
        {
            "start": 855951486,
            "stop": 855951556
        },
        {
            "start": 855951559,
            "stop": 855951629
        },
        {
            "start": 855951642,
            "stop": 855951673
        },
        {
            "start": 855951683,
            "stop": 855951776
        },
        {
            "start": 855951779,
            "stop": 855951805
        },
        {
            "start": 855951809,
            "stop": 855951839
        },
        {
            "start": 855951843,
            "stop": 855951969
        },
        {
            "start": 855951973,
            "stop": 855952067
        }
    ]
}