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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2009",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2007",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2008,
    "results": [
        {
            "start": 857735406,
            "stop": 857735407
        },
        {
            "start": 857735411,
            "stop": 857735414
        },
        {
            "start": 857735417,
            "stop": 857735418
        },
        {
            "start": 857735419,
            "stop": 857735427
        },
        {
            "start": 857735501,
            "stop": 857735513
        },
        {
            "start": 857735514,
            "stop": 857735524
        },
        {
            "start": 857735528,
            "stop": 857735557
        },
        {
            "start": 857735560,
            "stop": 857735561
        },
        {
            "start": 857735563,
            "stop": 857735577
        },
        {
            "start": 857735579,
            "stop": 857735600
        },
        {
            "start": 857738310,
            "stop": 857738794
        },
        {
            "start": 857738795,
            "stop": 857738891
        },
        {
            "start": 857738892,
            "stop": 857738910
        },
        {
            "start": 857741615,
            "stop": 857742120
        },
        {
            "start": 857742125,
            "stop": 857742150
        },
        {
            "start": 857742270,
            "stop": 857742753
        },
        {
            "start": 857742757,
            "stop": 857742763
        },
        {
            "start": 857742767,
            "stop": 857742768
        },
        {
            "start": 857742774,
            "stop": 857742810
        },
        {
            "start": 857742870,
            "stop": 857742918
        }
    ]
}