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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2324",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2322",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2323,
    "results": [
        {
            "start": 871682156,
            "stop": 871682750
        },
        {
            "start": 871682830,
            "stop": 871683712
        },
        {
            "start": 871683729,
            "stop": 871683787
        },
        {
            "start": 871683804,
            "stop": 871684005
        },
        {
            "start": 871684022,
            "stop": 871684036
        },
        {
            "start": 871684053,
            "stop": 871684100
        },
        {
            "start": 871684117,
            "stop": 871684488
        },
        {
            "start": 871684505,
            "stop": 871684663
        },
        {
            "start": 871684681,
            "stop": 871684778
        },
        {
            "start": 871684799,
            "stop": 871684913
        },
        {
            "start": 871684930,
            "stop": 871684941
        },
        {
            "start": 871684948,
            "stop": 871685386
        },
        {
            "start": 871693479,
            "stop": 871695111
        },
        {
            "start": 871697037,
            "stop": 871697525
        },
        {
            "start": 871697542,
            "stop": 871697795
        },
        {
            "start": 871697812,
            "stop": 871698246
        },
        {
            "start": 871698263,
            "stop": 871698779
        },
        {
            "start": 871698796,
            "stop": 871698885
        },
        {
            "start": 871698902,
            "stop": 871699177
        },
        {
            "start": 871699194,
            "stop": 871699351
        }
    ]
}