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=99
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=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=98",
    "results_count": 6551,
    "results_per_page": 20,
    "num_pages": 328,
    "page_number": 99,
    "results": [
        {
            "start": 827742208,
            "stop": 827744096
        },
        {
            "start": 827744128,
            "stop": 827747424
        },
        {
            "start": 827747456,
            "stop": 827747936
        },
        {
            "start": 827747968,
            "stop": 827752832
        },
        {
            "start": 827752864,
            "stop": 827755520
        },
        {
            "start": 827755552,
            "stop": 827758176
        },
        {
            "start": 827758208,
            "stop": 827758496
        },
        {
            "start": 827758528,
            "stop": 827761472
        },
        {
            "start": 827761504,
            "stop": 827764288
        },
        {
            "start": 827764320,
            "stop": 827764736
        },
        {
            "start": 827764768,
            "stop": 827767677
        },
        {
            "start": 827767678,
            "stop": 827769488
        },
        {
            "start": 827769490,
            "stop": 827769536
        },
        {
            "start": 827769568,
            "stop": 827769873
        },
        {
            "start": 827770013,
            "stop": 827771533
        },
        {
            "start": 827773716,
            "stop": 827777728
        },
        {
            "start": 827777760,
            "stop": 827779360
        },
        {
            "start": 827779392,
            "stop": 827780960
        },
        {
            "start": 827780992,
            "stop": 827782137
        },
        {
            "start": 827782138,
            "stop": 827782329
        }
    ]
}