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/O4b/timelines/L1_BURST_CAT3/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/O4b/timelines/L1_BURST_CAT3/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/O4b/timelines/L1_BURST_CAT3/segments?format=api&page=99",
    "results_count": 3475,
    "results_per_page": 20,
    "num_pages": 174,
    "page_number": 100,
    "results": [
        {
            "start": 1408377827,
            "stop": 1408385492
        },
        {
            "start": 1408385497,
            "stop": 1408388418
        },
        {
            "start": 1408403424,
            "stop": 1408404224
        },
        {
            "start": 1408404229,
            "stop": 1408405143
        },
        {
            "start": 1408405146,
            "stop": 1408409125
        },
        {
            "start": 1408409127,
            "stop": 1408422667
        },
        {
            "start": 1408422986,
            "stop": 1408423491
        },
        {
            "start": 1408425340,
            "stop": 1408425341
        },
        {
            "start": 1408425364,
            "stop": 1408425729
        },
        {
            "start": 1408425733,
            "stop": 1408432456
        },
        {
            "start": 1408432461,
            "stop": 1408432505
        },
        {
            "start": 1408432510,
            "stop": 1408436206
        },
        {
            "start": 1408436207,
            "stop": 1408448622
        },
        {
            "start": 1408448623,
            "stop": 1408449678
        },
        {
            "start": 1408449680,
            "stop": 1408456293
        },
        {
            "start": 1408456297,
            "stop": 1408461301
        },
        {
            "start": 1408461303,
            "stop": 1408468688
        },
        {
            "start": 1408468693,
            "stop": 1408476701
        },
        {
            "start": 1408476715,
            "stop": 1408477236
        },
        {
            "start": 1408477238,
            "stop": 1408483341
        }
    ]
}