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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=122",
    "results_count": 104500,
    "results_per_page": 20,
    "num_pages": 5225,
    "page_number": 123,
    "results": [
        {
            "start": 818147151,
            "stop": 818159105
        },
        {
            "start": 818159122,
            "stop": 818160880
        },
        {
            "start": 818164301,
            "stop": 818165202
        },
        {
            "start": 818165206,
            "stop": 818166862
        },
        {
            "start": 818166879,
            "stop": 818172504
        },
        {
            "start": 818174513,
            "stop": 818179837
        },
        {
            "start": 818180720,
            "stop": 818181714
        },
        {
            "start": 818185336,
            "stop": 818185345
        },
        {
            "start": 818185745,
            "stop": 818187706
        },
        {
            "start": 818188130,
            "stop": 818225813
        },
        {
            "start": 818225830,
            "stop": 818233753
        },
        {
            "start": 818233754,
            "stop": 818238614
        },
        {
            "start": 818238631,
            "stop": 818238909
        },
        {
            "start": 818240044,
            "stop": 818253102
        },
        {
            "start": 818253106,
            "stop": 818260210
        },
        {
            "start": 818260214,
            "stop": 818261221
        },
        {
            "start": 818262273,
            "stop": 818266004
        },
        {
            "start": 818266007,
            "stop": 818267296
        },
        {
            "start": 818267856,
            "stop": 818284314
        },
        {
            "start": 818284331,
            "stop": 818284373
        }
    ]
}