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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=91",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=89",
    "results_count": 6551,
    "results_per_page": 20,
    "num_pages": 328,
    "page_number": 90,
    "results": [
        {
            "start": 826758720,
            "stop": 826759648
        },
        {
            "start": 826759680,
            "stop": 826763552
        },
        {
            "start": 826763584,
            "stop": 826789344
        },
        {
            "start": 826789376,
            "stop": 826797056
        },
        {
            "start": 826797088,
            "stop": 826800512
        },
        {
            "start": 826800544,
            "stop": 826801513
        },
        {
            "start": 826802736,
            "stop": 826804205
        },
        {
            "start": 826806156,
            "stop": 826807712
        },
        {
            "start": 826807744,
            "stop": 826813308
        },
        {
            "start": 826814227,
            "stop": 826814277
        },
        {
            "start": 826814282,
            "stop": 826820096
        },
        {
            "start": 826820128,
            "stop": 826829283
        },
        {
            "start": 826832007,
            "stop": 826835936
        },
        {
            "start": 826835968,
            "stop": 826837376
        },
        {
            "start": 826837408,
            "stop": 826845184
        },
        {
            "start": 826845216,
            "stop": 826852627
        },
        {
            "start": 826855642,
            "stop": 826867136
        },
        {
            "start": 826867168,
            "stop": 826876704
        },
        {
            "start": 826876736,
            "stop": 826884608
        },
        {
            "start": 826884640,
            "stop": 826884896
        }
    ]
}