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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=99",
    "results_count": 3094,
    "results_per_page": 20,
    "num_pages": 155,
    "page_number": 100,
    "results": [
        {
            "start": 957538727,
            "stop": 957558620
        },
        {
            "start": 957567771,
            "stop": 957569374
        },
        {
            "start": 957569460,
            "stop": 957571580
        },
        {
            "start": 957571601,
            "stop": 957575041
        },
        {
            "start": 957575177,
            "stop": 957578623
        },
        {
            "start": 957582609,
            "stop": 957592642
        },
        {
            "start": 957593071,
            "stop": 957594809
        },
        {
            "start": 957598100,
            "stop": 957610897
        },
        {
            "start": 957614214,
            "stop": 957617276
        },
        {
            "start": 957664437,
            "stop": 957666454
        },
        {
            "start": 957668969,
            "stop": 957671189
        },
        {
            "start": 957672063,
            "stop": 957697984
        },
        {
            "start": 957699515,
            "stop": 957700219
        },
        {
            "start": 957707675,
            "stop": 957714550
        },
        {
            "start": 957718342,
            "stop": 957727837
        },
        {
            "start": 957728976,
            "stop": 957734163
        },
        {
            "start": 957763816,
            "stop": 957774548
        },
        {
            "start": 957778181,
            "stop": 957781373
        },
        {
            "start": 957785098,
            "stop": 957787840
        },
        {
            "start": 957793899,
            "stop": 957800077
        }
    ]
}