Return the segments for a given timeline for a run.

Query parameters:

  • start: Initial GPS time of the desired GPS interval.
  • stop: Final GPS time of the desired GPS interval.
  • compact: Return a list of segment [start, stop] list.
GET /api/v2/runs/S5/timelines/H2_CW/segments?format=api&page=12
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CW/segments?format=api&page=11",
    "results_count": 230,
    "results_per_page": 20,
    "num_pages": 12,
    "page_number": 12,
    "results": [
        {
            "start": 871629344,
            "stop": 871639264
        },
        {
            "start": 871639904,
            "stop": 871671664
        },
        {
            "start": 871672964,
            "stop": 871689664
        },
        {
            "start": 871692344,
            "stop": 871750564
        },
        {
            "start": 871753964,
            "stop": 872966283
        },
        {
            "start": 872970240,
            "stop": 874339264
        },
        {
            "start": 874341224,
            "stop": 874867998
        },
        {
            "start": 874868520,
            "stop": 874870112
        },
        {
            "start": 874873523,
            "stop": 875073664
        },
        {
            "start": 875077304,
            "stop": 875232014
        }
    ]
}