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=101
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=102",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=100",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 101,
    "results": [
        {
            "start": 1371811563,
            "stop": 1371813630
        },
        {
            "start": 1371813632,
            "stop": 1371815313
        },
        {
            "start": 1371819618,
            "stop": 1371819621
        },
        {
            "start": 1371819623,
            "stop": 1371819766
        },
        {
            "start": 1371819770,
            "stop": 1371821652
        },
        {
            "start": 1371821653,
            "stop": 1371823809
        },
        {
            "start": 1371823811,
            "stop": 1371825759
        },
        {
            "start": 1371825764,
            "stop": 1371825959
        },
        {
            "start": 1371825961,
            "stop": 1371828177
        },
        {
            "start": 1371828178,
            "stop": 1371829494
        },
        {
            "start": 1371829496,
            "stop": 1371829970
        },
        {
            "start": 1371829971,
            "stop": 1371830202
        },
        {
            "start": 1371830203,
            "stop": 1371830347
        },
        {
            "start": 1371830349,
            "stop": 1371830782
        },
        {
            "start": 1371830784,
            "stop": 1371830788
        },
        {
            "start": 1371830790,
            "stop": 1371830798
        },
        {
            "start": 1371830800,
            "stop": 1371830829
        },
        {
            "start": 1371830831,
            "stop": 1371830882
        },
        {
            "start": 1371830887,
            "stop": 1371831008
        },
        {
            "start": 1371831013,
            "stop": 1371831242
        }
    ]
}