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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=66",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=64",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 65,
    "results": [
        {
            "start": 817303945,
            "stop": 817303960
        },
        {
            "start": 817303963,
            "stop": 817304141
        },
        {
            "start": 817304144,
            "stop": 817304325
        },
        {
            "start": 817304328,
            "stop": 817304521
        },
        {
            "start": 817304529,
            "stop": 817304586
        },
        {
            "start": 817304590,
            "stop": 817304608
        },
        {
            "start": 817304611,
            "stop": 817304625
        },
        {
            "start": 817304629,
            "stop": 817304700
        },
        {
            "start": 817304703,
            "stop": 817304754
        },
        {
            "start": 817304757,
            "stop": 817304835
        },
        {
            "start": 817304838,
            "stop": 817304965
        },
        {
            "start": 817304968,
            "stop": 817305024
        },
        {
            "start": 817305027,
            "stop": 817305073
        },
        {
            "start": 817305076,
            "stop": 817305164
        },
        {
            "start": 817305168,
            "stop": 817305530
        },
        {
            "start": 817305533,
            "stop": 817305567
        },
        {
            "start": 817305573,
            "stop": 817305654
        },
        {
            "start": 817305657,
            "stop": 817305862
        },
        {
            "start": 817305865,
            "stop": 817306010
        },
        {
            "start": 817306013,
            "stop": 817306026
        }
    ]
}