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=2010
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=2011",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2009",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2010,
    "results": [
        {
            "start": 857766235,
            "stop": 857766471
        },
        {
            "start": 857766473,
            "stop": 857766477
        },
        {
            "start": 857766483,
            "stop": 857766515
        },
        {
            "start": 857766520,
            "stop": 857766560
        },
        {
            "start": 857766565,
            "stop": 857766585
        },
        {
            "start": 857767892,
            "stop": 857769111
        },
        {
            "start": 857769411,
            "stop": 857769458
        },
        {
            "start": 857769568,
            "stop": 857772093
        },
        {
            "start": 857773443,
            "stop": 857774138
        },
        {
            "start": 857774438,
            "stop": 857774439
        },
        {
            "start": 857774549,
            "stop": 857775545
        },
        {
            "start": 857775546,
            "stop": 857776603
        },
        {
            "start": 857776606,
            "stop": 857776609
        },
        {
            "start": 857776614,
            "stop": 857776615
        },
        {
            "start": 857776616,
            "stop": 857777591
        },
        {
            "start": 857777891,
            "stop": 857777930
        },
        {
            "start": 857778040,
            "stop": 857778072
        },
        {
            "start": 857778372,
            "stop": 857778455
        },
        {
            "start": 857778755,
            "stop": 857789953
        },
        {
            "start": 857792537,
            "stop": 857802990
        }
    ]
}