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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10199",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10200,
    "results": [
        {
            "start": 873974214,
            "stop": 873974949
        },
        {
            "start": 873974991,
            "stop": 873975082
        },
        {
            "start": 873975134,
            "stop": 873975241
        },
        {
            "start": 873975249,
            "stop": 873977081
        },
        {
            "start": 873977117,
            "stop": 873977408
        },
        {
            "start": 873977444,
            "stop": 873977493
        },
        {
            "start": 873977510,
            "stop": 873977626
        },
        {
            "start": 873977669,
            "stop": 873978337
        },
        {
            "start": 873978384,
            "stop": 873979635
        },
        {
            "start": 873979676,
            "stop": 873979685
        },
        {
            "start": 873979702,
            "stop": 873979998
        },
        {
            "start": 873980044,
            "stop": 873981585
        },
        {
            "start": 873981621,
            "stop": 873981870
        },
        {
            "start": 873981887,
            "stop": 873982266
        },
        {
            "start": 873982386,
            "stop": 873982502
        },
        {
            "start": 873982553,
            "stop": 873982560
        },
        {
            "start": 873982619,
            "stop": 873982626
        },
        {
            "start": 873982662,
            "stop": 873982726
        },
        {
            "start": 873982765,
            "stop": 873982778
        },
        {
            "start": 873982814,
            "stop": 873982865
        }
    ]
}