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/O4a/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/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=99",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 100,
    "results": [
        {
            "start": 1371776356,
            "stop": 1371777224
        },
        {
            "start": 1371777226,
            "stop": 1371777436
        },
        {
            "start": 1371777438,
            "stop": 1371779870
        },
        {
            "start": 1371779872,
            "stop": 1371780007
        },
        {
            "start": 1371780011,
            "stop": 1371781320
        },
        {
            "start": 1371781325,
            "stop": 1371786465
        },
        {
            "start": 1371786467,
            "stop": 1371787578
        },
        {
            "start": 1371787580,
            "stop": 1371790512
        },
        {
            "start": 1371790514,
            "stop": 1371790958
        },
        {
            "start": 1371790962,
            "stop": 1371794567
        },
        {
            "start": 1371794568,
            "stop": 1371797320
        },
        {
            "start": 1371797324,
            "stop": 1371798891
        },
        {
            "start": 1371798892,
            "stop": 1371800951
        },
        {
            "start": 1371800953,
            "stop": 1371802415
        },
        {
            "start": 1371802418,
            "stop": 1371802868
        },
        {
            "start": 1371802870,
            "stop": 1371805146
        },
        {
            "start": 1371805148,
            "stop": 1371807259
        },
        {
            "start": 1371807260,
            "stop": 1371807471
        },
        {
            "start": 1371807476,
            "stop": 1371811385
        },
        {
            "start": 1371811386,
            "stop": 1371811559
        }
    ]
}