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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=110",
    "results_count": 8301,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 111,
    "results": [
        {
            "start": 1175927595,
            "stop": 1175927845
        },
        {
            "start": 1175927847,
            "stop": 1175929143
        },
        {
            "start": 1175929145,
            "stop": 1175929490
        },
        {
            "start": 1175929492,
            "stop": 1175929510
        },
        {
            "start": 1175929512,
            "stop": 1175929784
        },
        {
            "start": 1175929786,
            "stop": 1175933164
        },
        {
            "start": 1175933165,
            "stop": 1175933285
        },
        {
            "start": 1175933286,
            "stop": 1175944478
        },
        {
            "start": 1175944479,
            "stop": 1175944646
        },
        {
            "start": 1175944647,
            "stop": 1175944678
        },
        {
            "start": 1175944679,
            "stop": 1175944778
        },
        {
            "start": 1175944781,
            "stop": 1175944817
        },
        {
            "start": 1175944818,
            "stop": 1175944844
        },
        {
            "start": 1175944845,
            "stop": 1175944850
        },
        {
            "start": 1175944851,
            "stop": 1175944987
        },
        {
            "start": 1175944988,
            "stop": 1175946359
        },
        {
            "start": 1175946360,
            "stop": 1175946365
        },
        {
            "start": 1175946366,
            "stop": 1175951386
        },
        {
            "start": 1175951388,
            "stop": 1175954064
        },
        {
            "start": 1175954065,
            "stop": 1175954196
        }
    ]
}