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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=256",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=254",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 255,
    "results": [
        {
            "start": 862225377,
            "stop": 862225638
        },
        {
            "start": 862225834,
            "stop": 862239567
        },
        {
            "start": 862241366,
            "stop": 862248880
        },
        {
            "start": 862249688,
            "stop": 862274211
        },
        {
            "start": 862276335,
            "stop": 862287610
        },
        {
            "start": 862287846,
            "stop": 862288746
        },
        {
            "start": 862289206,
            "stop": 862289305
        },
        {
            "start": 862292855,
            "stop": 862293571
        },
        {
            "start": 862293766,
            "stop": 862300085
        },
        {
            "start": 862301537,
            "stop": 862309628
        },
        {
            "start": 862312313,
            "stop": 862312999
        },
        {
            "start": 862313285,
            "stop": 862313691
        },
        {
            "start": 862323927,
            "stop": 862329136
        },
        {
            "start": 862330013,
            "stop": 862330034
        },
        {
            "start": 862330140,
            "stop": 862330498
        },
        {
            "start": 862334971,
            "stop": 862383991
        },
        {
            "start": 862385059,
            "stop": 862394262
        },
        {
            "start": 862397227,
            "stop": 862401038
        },
        {
            "start": 862402115,
            "stop": 862410665
        },
        {
            "start": 862411867,
            "stop": 862467873
        }
    ]
}