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=800
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=801",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=799",
    "results_count": 17965,
    "results_per_page": 20,
    "num_pages": 899,
    "page_number": 800,
    "results": [
        {
            "start": 957768163,
            "stop": 957768222
        },
        {
            "start": 957768228,
            "stop": 957768344
        },
        {
            "start": 957768350,
            "stop": 957768789
        },
        {
            "start": 957768795,
            "stop": 957768819
        },
        {
            "start": 957768825,
            "stop": 957768931
        },
        {
            "start": 957768937,
            "stop": 957768946
        },
        {
            "start": 957768952,
            "stop": 957769235
        },
        {
            "start": 957769241,
            "stop": 957770115
        },
        {
            "start": 957770120,
            "stop": 957770410
        },
        {
            "start": 957770416,
            "stop": 957770555
        },
        {
            "start": 957770561,
            "stop": 957770731
        },
        {
            "start": 957770737,
            "stop": 957771027
        },
        {
            "start": 957771033,
            "stop": 957771272
        },
        {
            "start": 957771278,
            "stop": 957771496
        },
        {
            "start": 957771502,
            "stop": 957771630
        },
        {
            "start": 957771636,
            "stop": 957771882
        },
        {
            "start": 957771888,
            "stop": 957771955
        },
        {
            "start": 957771962,
            "stop": 957771986
        },
        {
            "start": 957771992,
            "stop": 957772011
        },
        {
            "start": 957772016,
            "stop": 957772379
        }
    ]
}