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=124
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=125",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=123",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 124,
    "results": [
        {
            "start": 817871234,
            "stop": 817871249
        },
        {
            "start": 817871253,
            "stop": 817871254
        },
        {
            "start": 817871261,
            "stop": 817871272
        },
        {
            "start": 817871276,
            "stop": 817871278
        },
        {
            "start": 817871290,
            "stop": 817871309
        },
        {
            "start": 817871313,
            "stop": 817871329
        },
        {
            "start": 817871332,
            "stop": 817871337
        },
        {
            "start": 817871341,
            "stop": 817871385
        },
        {
            "start": 817871388,
            "stop": 817871453
        },
        {
            "start": 817871457,
            "stop": 817871487
        },
        {
            "start": 817871490,
            "stop": 817871546
        },
        {
            "start": 817871555,
            "stop": 817871566
        },
        {
            "start": 817871569,
            "stop": 817871577
        },
        {
            "start": 817871580,
            "stop": 817871591
        },
        {
            "start": 817871597,
            "stop": 817871600
        },
        {
            "start": 817871604,
            "stop": 817871643
        },
        {
            "start": 817871650,
            "stop": 817871652
        },
        {
            "start": 817871655,
            "stop": 817871730
        },
        {
            "start": 817871736,
            "stop": 817871761
        },
        {
            "start": 817871768,
            "stop": 817871809
        }
    ]
}