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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2341",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2339",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2340,
    "results": [
        {
            "start": 871839550,
            "stop": 871839797
        },
        {
            "start": 871839814,
            "stop": 871839987
        },
        {
            "start": 871840004,
            "stop": 871840033
        },
        {
            "start": 871840050,
            "stop": 871840230
        },
        {
            "start": 871840247,
            "stop": 871840703
        },
        {
            "start": 871840720,
            "stop": 871840799
        },
        {
            "start": 871840816,
            "stop": 871841214
        },
        {
            "start": 871841244,
            "stop": 871841519
        },
        {
            "start": 871841536,
            "stop": 871841552
        },
        {
            "start": 871841569,
            "stop": 871841703
        },
        {
            "start": 871841730,
            "stop": 871841740
        },
        {
            "start": 871841759,
            "stop": 871841768
        },
        {
            "start": 871841785,
            "stop": 871842141
        },
        {
            "start": 871842158,
            "stop": 871842161
        },
        {
            "start": 871842200,
            "stop": 871842217
        },
        {
            "start": 871842235,
            "stop": 871842271
        },
        {
            "start": 871842288,
            "stop": 871842310
        },
        {
            "start": 871842327,
            "stop": 871842328
        },
        {
            "start": 871842345,
            "stop": 871842362
        },
        {
            "start": 871842380,
            "stop": 871842473
        }
    ]
}