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_CAT4/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/H1_CBCLOW_CAT4/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT4/segments?format=api&page=122",
    "results_count": 177886,
    "results_per_page": 20,
    "num_pages": 8895,
    "page_number": 123,
    "results": [
        {
            "start": 819547080,
            "stop": 819547290
        },
        {
            "start": 819547297,
            "stop": 819549989
        },
        {
            "start": 819549996,
            "stop": 819554914
        },
        {
            "start": 819554918,
            "stop": 819555343
        },
        {
            "start": 819555524,
            "stop": 819555913
        },
        {
            "start": 819557861,
            "stop": 819560053
        },
        {
            "start": 819560225,
            "stop": 819560427
        },
        {
            "start": 819560434,
            "stop": 819561146
        },
        {
            "start": 819561153,
            "stop": 819561758
        },
        {
            "start": 819561765,
            "stop": 819561894
        },
        {
            "start": 819561901,
            "stop": 819562488
        },
        {
            "start": 819562496,
            "stop": 819562916
        },
        {
            "start": 819562923,
            "stop": 819563506
        },
        {
            "start": 819563513,
            "stop": 819565821
        },
        {
            "start": 819565828,
            "stop": 819566382
        },
        {
            "start": 819566389,
            "stop": 819568147
        },
        {
            "start": 819568155,
            "stop": 819571897
        },
        {
            "start": 819571905,
            "stop": 819572042
        },
        {
            "start": 819572050,
            "stop": 819572504
        },
        {
            "start": 819572512,
            "stop": 819573192
        }
    ]
}