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

{
    "next": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT2/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT2/segments?format=api&page=98",
    "results_count": 9495,
    "results_per_page": 20,
    "num_pages": 475,
    "page_number": 99,
    "results": [
        {
            "start": 1263906322,
            "stop": 1263906348
        },
        {
            "start": 1263906349,
            "stop": 1263906352
        },
        {
            "start": 1263906354,
            "stop": 1263906361
        },
        {
            "start": 1263906363,
            "stop": 1263906410
        },
        {
            "start": 1263906411,
            "stop": 1263906413
        },
        {
            "start": 1263906415,
            "stop": 1263906455
        },
        {
            "start": 1263906456,
            "stop": 1263906458
        },
        {
            "start": 1263906460,
            "stop": 1263906462
        },
        {
            "start": 1263906463,
            "stop": 1263906478
        },
        {
            "start": 1263906479,
            "stop": 1263906481
        },
        {
            "start": 1263906483,
            "stop": 1263906485
        },
        {
            "start": 1263906487,
            "stop": 1263906548
        },
        {
            "start": 1263906549,
            "stop": 1263906562
        },
        {
            "start": 1263906564,
            "stop": 1263906567
        },
        {
            "start": 1263906568,
            "stop": 1263906574
        },
        {
            "start": 1263906576,
            "stop": 1263906578
        },
        {
            "start": 1263906580,
            "stop": 1263906586
        },
        {
            "start": 1263906588,
            "stop": 1263906614
        },
        {
            "start": 1263906617,
            "stop": 1263906831
        },
        {
            "start": 1263906833,
            "stop": 1263906839
        }
    ]
}