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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=302",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=300",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 301,
    "results": [
        {
            "start": 818397942,
            "stop": 818398182
        },
        {
            "start": 818398202,
            "stop": 818398506
        },
        {
            "start": 818398526,
            "stop": 818398581
        },
        {
            "start": 818398606,
            "stop": 818398869
        },
        {
            "start": 818398913,
            "stop": 818399164
        },
        {
            "start": 818399183,
            "stop": 818399240
        },
        {
            "start": 818399259,
            "stop": 818399341
        },
        {
            "start": 818399362,
            "stop": 818400406
        },
        {
            "start": 818400425,
            "stop": 818400647
        },
        {
            "start": 818400668,
            "stop": 818401078
        },
        {
            "start": 818401098,
            "stop": 818401835
        },
        {
            "start": 818401855,
            "stop": 818402012
        },
        {
            "start": 818402032,
            "stop": 818403246
        },
        {
            "start": 818403266,
            "stop": 818403496
        },
        {
            "start": 818403517,
            "stop": 818403883
        },
        {
            "start": 818403905,
            "stop": 818405000
        },
        {
            "start": 818405020,
            "stop": 818405159
        },
        {
            "start": 818405179,
            "stop": 818405334
        },
        {
            "start": 818405363,
            "stop": 818405825
        },
        {
            "start": 818405846,
            "stop": 818407719
        }
    ]
}