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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=43",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=41",
    "results_count": 81402,
    "results_per_page": 20,
    "num_pages": 4071,
    "page_number": 42,
    "results": [
        {
            "start": 817306619,
            "stop": 817306633
        },
        {
            "start": 817306658,
            "stop": 817306659
        },
        {
            "start": 817306684,
            "stop": 817306685
        },
        {
            "start": 817306696,
            "stop": 817306697
        },
        {
            "start": 817306700,
            "stop": 817306701
        },
        {
            "start": 817306710,
            "stop": 817306711
        },
        {
            "start": 817306714,
            "stop": 817306717
        },
        {
            "start": 817306730,
            "stop": 817306734
        },
        {
            "start": 817306739,
            "stop": 817306745
        },
        {
            "start": 817306748,
            "stop": 817306751
        },
        {
            "start": 817306754,
            "stop": 817306791
        },
        {
            "start": 817306794,
            "stop": 817306904
        },
        {
            "start": 817306910,
            "stop": 817306947
        },
        {
            "start": 817306950,
            "stop": 817306976
        },
        {
            "start": 817306979,
            "stop": 817307120
        },
        {
            "start": 817307123,
            "stop": 817307206
        },
        {
            "start": 817307209,
            "stop": 817307495
        },
        {
            "start": 817307498,
            "stop": 817307563
        },
        {
            "start": 817307566,
            "stop": 817307888
        },
        {
            "start": 817307891,
            "stop": 817308011
        }
    ]
}