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=2325
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=2326",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2324",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2325,
    "results": [
        {
            "start": 871704610,
            "stop": 871704673
        },
        {
            "start": 871704690,
            "stop": 871704762
        },
        {
            "start": 871704779,
            "stop": 871705002
        },
        {
            "start": 871705019,
            "stop": 871705040
        },
        {
            "start": 871705056,
            "stop": 871705175
        },
        {
            "start": 871705194,
            "stop": 871705359
        },
        {
            "start": 871705376,
            "stop": 871705574
        },
        {
            "start": 871705591,
            "stop": 871706246
        },
        {
            "start": 871706267,
            "stop": 871706284
        },
        {
            "start": 871706301,
            "stop": 871706790
        },
        {
            "start": 871706807,
            "stop": 871706990
        },
        {
            "start": 871707070,
            "stop": 871707294
        },
        {
            "start": 871707311,
            "stop": 871707467
        },
        {
            "start": 871707484,
            "stop": 871707670
        },
        {
            "start": 871707694,
            "stop": 871707725
        },
        {
            "start": 871707742,
            "stop": 871708076
        },
        {
            "start": 871708093,
            "stop": 871708155
        },
        {
            "start": 871708172,
            "stop": 871708483
        },
        {
            "start": 871708500,
            "stop": 871708555
        },
        {
            "start": 871708572,
            "stop": 871708764
        }
    ]
}