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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=51",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=49",
    "results_count": 17965,
    "results_per_page": 20,
    "num_pages": 899,
    "page_number": 50,
    "results": [
        {
            "start": 931509752,
            "stop": 931509770
        },
        {
            "start": 931509786,
            "stop": 931509815
        },
        {
            "start": 931509840,
            "stop": 931509850
        },
        {
            "start": 931509857,
            "stop": 931509859
        },
        {
            "start": 931509866,
            "stop": 931509868
        },
        {
            "start": 931509875,
            "stop": 931509878
        },
        {
            "start": 931509885,
            "stop": 931509916
        },
        {
            "start": 931509923,
            "stop": 931509925
        },
        {
            "start": 931509932,
            "stop": 931509939
        },
        {
            "start": 931509946,
            "stop": 931509952
        },
        {
            "start": 931509959,
            "stop": 931509973
        },
        {
            "start": 931509980,
            "stop": 931510024
        },
        {
            "start": 931510031,
            "stop": 931510052
        },
        {
            "start": 931510059,
            "stop": 931510060
        },
        {
            "start": 931510068,
            "stop": 931510076
        },
        {
            "start": 931510086,
            "stop": 931510094
        },
        {
            "start": 931510101,
            "stop": 931510113
        },
        {
            "start": 931510135,
            "stop": 931510202
        },
        {
            "start": 931510213,
            "stop": 931510232
        },
        {
            "start": 931510239,
            "stop": 931510254
        }
    ]
}