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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10081",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10079",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10080,
    "results": [
        {
            "start": 873193087,
            "stop": 873193128
        },
        {
            "start": 873193145,
            "stop": 873193149
        },
        {
            "start": 873193192,
            "stop": 873193361
        },
        {
            "start": 873193397,
            "stop": 873193522
        },
        {
            "start": 873193558,
            "stop": 873193616
        },
        {
            "start": 873193680,
            "stop": 873193691
        },
        {
            "start": 873193765,
            "stop": 873193781
        },
        {
            "start": 873193817,
            "stop": 873193908
        },
        {
            "start": 873194007,
            "stop": 873194034
        },
        {
            "start": 873194520,
            "stop": 873195141
        },
        {
            "start": 873195177,
            "stop": 873195418
        },
        {
            "start": 873195486,
            "stop": 873195493
        },
        {
            "start": 873195570,
            "stop": 873195597
        },
        {
            "start": 873195653,
            "stop": 873195897
        },
        {
            "start": 873196013,
            "stop": 873196044
        },
        {
            "start": 873196080,
            "stop": 873196218
        },
        {
            "start": 873196274,
            "stop": 873196336
        },
        {
            "start": 873196402,
            "stop": 873196463
        },
        {
            "start": 873196530,
            "stop": 873196550
        },
        {
            "start": 873196603,
            "stop": 873196747
        }
    ]
}