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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=91",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=89",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 90,
    "results": [
        {
            "start": 819758954,
            "stop": 819760098
        },
        {
            "start": 819760102,
            "stop": 819760260
        },
        {
            "start": 819761763,
            "stop": 819762965
        },
        {
            "start": 819762968,
            "stop": 819763031
        },
        {
            "start": 819763034,
            "stop": 819763484
        },
        {
            "start": 819763487,
            "stop": 819763534
        },
        {
            "start": 819763537,
            "stop": 819763748
        },
        {
            "start": 819763751,
            "stop": 819763753
        },
        {
            "start": 819764281,
            "stop": 819765374
        },
        {
            "start": 819765377,
            "stop": 819766276
        },
        {
            "start": 819766279,
            "stop": 819767503
        },
        {
            "start": 819767864,
            "stop": 819768054
        },
        {
            "start": 819768252,
            "stop": 819768852
        },
        {
            "start": 819768855,
            "stop": 819769894
        },
        {
            "start": 819769897,
            "stop": 819770117
        },
        {
            "start": 819770120,
            "stop": 819770171
        },
        {
            "start": 819770175,
            "stop": 819771629
        },
        {
            "start": 819771632,
            "stop": 819771973
        },
        {
            "start": 819771976,
            "stop": 819772582
        },
        {
            "start": 819772585,
            "stop": 819772856
        }
    ]
}