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=10030
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=10031",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10029",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10030,
    "results": [
        {
            "start": 872477599,
            "stop": 872477942
        },
        {
            "start": 872478035,
            "stop": 872478043
        },
        {
            "start": 872478080,
            "stop": 872478291
        },
        {
            "start": 872478308,
            "stop": 872478482
        },
        {
            "start": 872478592,
            "stop": 872478598
        },
        {
            "start": 872478777,
            "stop": 872478829
        },
        {
            "start": 872478869,
            "stop": 872478892
        },
        {
            "start": 872478928,
            "stop": 872478941
        },
        {
            "start": 872478977,
            "stop": 872478978
        },
        {
            "start": 872479025,
            "stop": 872479081
        },
        {
            "start": 872479155,
            "stop": 872479175
        },
        {
            "start": 872479249,
            "stop": 872479268
        },
        {
            "start": 872479346,
            "stop": 872479347
        },
        {
            "start": 872479413,
            "stop": 872479428
        },
        {
            "start": 872479536,
            "stop": 872479545
        },
        {
            "start": 872479595,
            "stop": 872479644
        },
        {
            "start": 872479680,
            "stop": 872479719
        },
        {
            "start": 872479755,
            "stop": 872479973
        },
        {
            "start": 872480009,
            "stop": 872480070
        },
        {
            "start": 872480106,
            "stop": 872480340
        }
    ]
}