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=2002
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=2003",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2001",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2002,
    "results": [
        {
            "start": 857593865,
            "stop": 857596635
        },
        {
            "start": 857597961,
            "stop": 857608152
        },
        {
            "start": 857608689,
            "stop": 857616270
        },
        {
            "start": 857616390,
            "stop": 857632522
        },
        {
            "start": 857633884,
            "stop": 857635602
        },
        {
            "start": 857635608,
            "stop": 857636316
        },
        {
            "start": 857636319,
            "stop": 857636334
        },
        {
            "start": 857636444,
            "stop": 857636533
        },
        {
            "start": 857636833,
            "stop": 857636873
        },
        {
            "start": 857637225,
            "stop": 857639043
        },
        {
            "start": 857641735,
            "stop": 857645155
        },
        {
            "start": 857646464,
            "stop": 857652038
        },
        {
            "start": 857652148,
            "stop": 857652252
        },
        {
            "start": 857652552,
            "stop": 857652623
        },
        {
            "start": 857652923,
            "stop": 857667105
        },
        {
            "start": 857667405,
            "stop": 857667836
        },
        {
            "start": 857669640,
            "stop": 857670450
        },
        {
            "start": 857670510,
            "stop": 857672850
        },
        {
            "start": 857673150,
            "stop": 857673246
        },
        {
            "start": 857674535,
            "stop": 857674650
        }
    ]
}