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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT3/segments?format=api&page=351",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT3/segments?format=api&page=349",
    "results_count": 289660,
    "results_per_page": 20,
    "num_pages": 14483,
    "page_number": 350,
    "results": [
        {
            "start": 931875470,
            "stop": 931875525
        },
        {
            "start": 931875526,
            "stop": 931875616
        },
        {
            "start": 931875617,
            "stop": 931876026
        },
        {
            "start": 931876027,
            "stop": 931876044
        },
        {
            "start": 931876045,
            "stop": 931876139
        },
        {
            "start": 931876140,
            "stop": 931876147
        },
        {
            "start": 931876148,
            "stop": 931876207
        },
        {
            "start": 931876209,
            "stop": 931876474
        },
        {
            "start": 931876476,
            "stop": 931876544
        },
        {
            "start": 931876545,
            "stop": 931876673
        },
        {
            "start": 931876674,
            "stop": 931876795
        },
        {
            "start": 931876796,
            "stop": 931876886
        },
        {
            "start": 931876887,
            "stop": 931877337
        },
        {
            "start": 931877339,
            "stop": 931877563
        },
        {
            "start": 931877564,
            "stop": 931877575
        },
        {
            "start": 931877576,
            "stop": 931877674
        },
        {
            "start": 931877675,
            "stop": 931877912
        },
        {
            "start": 931877914,
            "stop": 931878055
        },
        {
            "start": 931878057,
            "stop": 931878469
        },
        {
            "start": 931878470,
            "stop": 931878520
        }
    ]
}