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

{
    "next": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT3/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT3/segments?format=api&page=199",
    "results_count": 9495,
    "results_per_page": 20,
    "num_pages": 475,
    "page_number": 200,
    "results": [
        {
            "start": 1264381366,
            "stop": 1264381368
        },
        {
            "start": 1264381370,
            "stop": 1264381372
        },
        {
            "start": 1264381374,
            "stop": 1264381376
        },
        {
            "start": 1264381378,
            "stop": 1264381380
        },
        {
            "start": 1264381383,
            "stop": 1264381384
        },
        {
            "start": 1264381385,
            "stop": 1264381388
        },
        {
            "start": 1264381390,
            "stop": 1264381391
        },
        {
            "start": 1264381394,
            "stop": 1264381396
        },
        {
            "start": 1264381397,
            "stop": 1264381404
        },
        {
            "start": 1264381406,
            "stop": 1264381459
        },
        {
            "start": 1264381461,
            "stop": 1264381462
        },
        {
            "start": 1264381463,
            "stop": 1264381468
        },
        {
            "start": 1264381469,
            "stop": 1264381475
        },
        {
            "start": 1264381476,
            "stop": 1264381479
        },
        {
            "start": 1264381481,
            "stop": 1264381487
        },
        {
            "start": 1264381489,
            "stop": 1264381491
        },
        {
            "start": 1264381493,
            "stop": 1264381496
        },
        {
            "start": 1264381498,
            "stop": 1264381519
        },
        {
            "start": 1264381520,
            "stop": 1264381526
        },
        {
            "start": 1264381527,
            "stop": 1264381533
        }
    ]
}