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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=32",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=30",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 31,
    "results": [
        {
            "start": 1126353878,
            "stop": 1126353904
        },
        {
            "start": 1126353905,
            "stop": 1126354012
        },
        {
            "start": 1126354013,
            "stop": 1126354128
        },
        {
            "start": 1126354129,
            "stop": 1126354224
        },
        {
            "start": 1126354225,
            "stop": 1126354304
        },
        {
            "start": 1126354305,
            "stop": 1126354334
        },
        {
            "start": 1126354335,
            "stop": 1126354362
        },
        {
            "start": 1126354363,
            "stop": 1126354796
        },
        {
            "start": 1126354797,
            "stop": 1126354802
        },
        {
            "start": 1126354804,
            "stop": 1126354899
        },
        {
            "start": 1126354900,
            "stop": 1126355069
        },
        {
            "start": 1126355070,
            "stop": 1126355442
        },
        {
            "start": 1126355443,
            "stop": 1126355539
        },
        {
            "start": 1126355541,
            "stop": 1126355654
        },
        {
            "start": 1126355655,
            "stop": 1126355751
        },
        {
            "start": 1126355752,
            "stop": 1126355836
        },
        {
            "start": 1126355838,
            "stop": 1126355865
        },
        {
            "start": 1126355866,
            "stop": 1126356349
        },
        {
            "start": 1126356350,
            "stop": 1126356436
        },
        {
            "start": 1126356437,
            "stop": 1126356517
        }
    ]
}