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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CW_CAT1/segments?format=api&page=256",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CW_CAT1/segments?format=api&page=254",
    "results_count": 6331,
    "results_per_page": 20,
    "num_pages": 317,
    "page_number": 255,
    "results": [
        {
            "start": 962512296,
            "stop": 962532416
        },
        {
            "start": 962533929,
            "stop": 962546967
        },
        {
            "start": 962549932,
            "stop": 962551700
        },
        {
            "start": 962553883,
            "stop": 962562529
        },
        {
            "start": 962565880,
            "stop": 962567850
        },
        {
            "start": 962572167,
            "stop": 962574082
        },
        {
            "start": 962600905,
            "stop": 962608104
        },
        {
            "start": 962609752,
            "stop": 962634026
        },
        {
            "start": 962641861,
            "stop": 962645340
        },
        {
            "start": 962647169,
            "stop": 962650923
        },
        {
            "start": 962652636,
            "stop": 962654986
        },
        {
            "start": 962661855,
            "stop": 962662807
        },
        {
            "start": 962697963,
            "stop": 962706721
        },
        {
            "start": 962708981,
            "stop": 962710594
        },
        {
            "start": 962712270,
            "stop": 962729132
        },
        {
            "start": 962730436,
            "stop": 962743191
        },
        {
            "start": 962745566,
            "stop": 962749183
        },
        {
            "start": 962752294,
            "stop": 962757435
        },
        {
            "start": 962757439,
            "stop": 962757497
        },
        {
            "start": 962761222,
            "stop": 962767112
        }
    ]
}