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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3000",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=2998",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 2999,
    "results": [
        {
            "start": 862251300,
            "stop": 862252070
        },
        {
            "start": 862252073,
            "stop": 862253652
        },
        {
            "start": 862253658,
            "stop": 862253677
        },
        {
            "start": 862253683,
            "stop": 862253700
        },
        {
            "start": 862253760,
            "stop": 862255393
        },
        {
            "start": 862255394,
            "stop": 862255395
        },
        {
            "start": 862255397,
            "stop": 862255500
        },
        {
            "start": 862255560,
            "stop": 862257480
        },
        {
            "start": 862257540,
            "stop": 862258048
        },
        {
            "start": 862259928,
            "stop": 862262489
        },
        {
            "start": 862262789,
            "stop": 862263780
        },
        {
            "start": 862263840,
            "stop": 862265280
        },
        {
            "start": 862265460,
            "stop": 862265700
        },
        {
            "start": 862265760,
            "stop": 862265880
        },
        {
            "start": 862265940,
            "stop": 862271897
        },
        {
            "start": 862271901,
            "stop": 862271916
        },
        {
            "start": 862271920,
            "stop": 862274280
        },
        {
            "start": 862274400,
            "stop": 862276500
        },
        {
            "start": 862276560,
            "stop": 862278581
        },
        {
            "start": 862279110,
            "stop": 862312808
        }
    ]
}