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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=2243",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=2241",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 2242,
    "results": [
        {
            "start": 873203947,
            "stop": 873204752
        },
        {
            "start": 873204771,
            "stop": 873204966
        },
        {
            "start": 873204983,
            "stop": 873205045
        },
        {
            "start": 873205062,
            "stop": 873206003
        },
        {
            "start": 873206022,
            "stop": 873206030
        },
        {
            "start": 873206054,
            "stop": 873206096
        },
        {
            "start": 873206113,
            "stop": 873206150
        },
        {
            "start": 873206182,
            "stop": 873206215
        },
        {
            "start": 873206236,
            "stop": 873206250
        },
        {
            "start": 873206270,
            "stop": 873206340
        },
        {
            "start": 873206359,
            "stop": 873206381
        },
        {
            "start": 873206398,
            "stop": 873206493
        },
        {
            "start": 873206518,
            "stop": 873207275
        },
        {
            "start": 873207292,
            "stop": 873207357
        },
        {
            "start": 873207375,
            "stop": 873207579
        },
        {
            "start": 873207598,
            "stop": 873207821
        },
        {
            "start": 873207838,
            "stop": 873207935
        },
        {
            "start": 873207954,
            "stop": 873208003
        },
        {
            "start": 873208020,
            "stop": 873208072
        },
        {
            "start": 873208089,
            "stop": 873208157
        }
    ]
}