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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=3999",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=3997",
    "results_count": 81107,
    "results_per_page": 20,
    "num_pages": 4056,
    "page_number": 3998,
    "results": [
        {
            "start": 874759723,
            "stop": 874759848
        },
        {
            "start": 874759849,
            "stop": 874759903
        },
        {
            "start": 874759904,
            "stop": 874759960
        },
        {
            "start": 874759961,
            "stop": 874760012
        },
        {
            "start": 874760013,
            "stop": 874760179
        },
        {
            "start": 874760181,
            "stop": 874760185
        },
        {
            "start": 874760187,
            "stop": 874760191
        },
        {
            "start": 874760192,
            "stop": 874760209
        },
        {
            "start": 874760210,
            "stop": 874760444
        },
        {
            "start": 874760445,
            "stop": 874760519
        },
        {
            "start": 874760520,
            "stop": 874760539
        },
        {
            "start": 874760540,
            "stop": 874760544
        },
        {
            "start": 874760545,
            "stop": 874760561
        },
        {
            "start": 874760562,
            "stop": 874760624
        },
        {
            "start": 874760625,
            "stop": 874760693
        },
        {
            "start": 874760694,
            "stop": 874760807
        },
        {
            "start": 874760808,
            "stop": 874760829
        },
        {
            "start": 874760830,
            "stop": 874760989
        },
        {
            "start": 874760990,
            "stop": 874760993
        },
        {
            "start": 874760994,
            "stop": 874761218
        }
    ]
}