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/S6/timelines/H1_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/S6/timelines/H1_CBCHIGH_CAT3/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCHIGH_CAT3/segments?format=api&page=99",
    "results_count": 154481,
    "results_per_page": 20,
    "num_pages": 7725,
    "page_number": 100,
    "results": [
        {
            "start": 931612520,
            "stop": 931612540
        },
        {
            "start": 931612557,
            "stop": 931612759
        },
        {
            "start": 931612777,
            "stop": 931612844
        },
        {
            "start": 931612862,
            "stop": 931612964
        },
        {
            "start": 931613008,
            "stop": 931613047
        },
        {
            "start": 931613064,
            "stop": 931613073
        },
        {
            "start": 931613090,
            "stop": 931613118
        },
        {
            "start": 931613136,
            "stop": 931613397
        },
        {
            "start": 931613399,
            "stop": 931613681
        },
        {
            "start": 931613684,
            "stop": 931613725
        },
        {
            "start": 931613743,
            "stop": 931613748
        },
        {
            "start": 931613765,
            "stop": 931613810
        },
        {
            "start": 931613828,
            "stop": 931613861
        },
        {
            "start": 931613916,
            "stop": 931613921
        },
        {
            "start": 931613939,
            "stop": 931613943
        },
        {
            "start": 931613946,
            "stop": 931614110
        },
        {
            "start": 931614128,
            "stop": 931614154
        },
        {
            "start": 931614199,
            "stop": 931614213
        },
        {
            "start": 931614235,
            "stop": 931614254
        },
        {
            "start": 931614274,
            "stop": 931614394
        }
    ]
}