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=100
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=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=99",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 100,
    "results": [
        {
            "start": 819861866,
            "stop": 819862685
        },
        {
            "start": 819862688,
            "stop": 819864836
        },
        {
            "start": 819864839,
            "stop": 819866376
        },
        {
            "start": 819866379,
            "stop": 819868555
        },
        {
            "start": 819868558,
            "stop": 819875181
        },
        {
            "start": 819875185,
            "stop": 819876504
        },
        {
            "start": 819876508,
            "stop": 819880776
        },
        {
            "start": 819882118,
            "stop": 819882569
        },
        {
            "start": 819882572,
            "stop": 819887123
        },
        {
            "start": 819888765,
            "stop": 819890295
        },
        {
            "start": 819890298,
            "stop": 819891562
        },
        {
            "start": 819891566,
            "stop": 819894193
        },
        {
            "start": 819894215,
            "stop": 819894216
        },
        {
            "start": 819894360,
            "stop": 819895810
        },
        {
            "start": 819895814,
            "stop": 819901444
        },
        {
            "start": 819901447,
            "stop": 819901632
        },
        {
            "start": 819902363,
            "stop": 819905882
        },
        {
            "start": 819905886,
            "stop": 819909124
        },
        {
            "start": 819909314,
            "stop": 819910775
        },
        {
            "start": 819910778,
            "stop": 819911100
        }
    ]
}