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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=99",
    "results_count": 104500,
    "results_per_page": 20,
    "num_pages": 5225,
    "page_number": 100,
    "results": [
        {
            "start": 817218781,
            "stop": 817219442
        },
        {
            "start": 817219445,
            "stop": 817222272
        },
        {
            "start": 817222276,
            "stop": 817224052
        },
        {
            "start": 817224553,
            "stop": 817224624
        },
        {
            "start": 817227569,
            "stop": 817229695
        },
        {
            "start": 817229698,
            "stop": 817229951
        },
        {
            "start": 817229954,
            "stop": 817230610
        },
        {
            "start": 817230613,
            "stop": 817231407
        },
        {
            "start": 817231409,
            "stop": 817231632
        },
        {
            "start": 817239373,
            "stop": 817239719
        },
        {
            "start": 817239720,
            "stop": 817240272
        },
        {
            "start": 817240276,
            "stop": 817241044
        },
        {
            "start": 817241048,
            "stop": 817241050
        },
        {
            "start": 817241053,
            "stop": 817242035
        },
        {
            "start": 817242037,
            "stop": 817242996
        },
        {
            "start": 817244413,
            "stop": 817244715
        },
        {
            "start": 817244719,
            "stop": 817244771
        },
        {
            "start": 817244774,
            "stop": 817245631
        },
        {
            "start": 817245634,
            "stop": 817245757
        },
        {
            "start": 817245760,
            "stop": 817246193
        }
    ]
}