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=10050
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=10051",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10049",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10050,
    "results": [
        {
            "start": 872778200,
            "stop": 872778210
        },
        {
            "start": 872779088,
            "stop": 872779204
        },
        {
            "start": 872779324,
            "stop": 872779359
        },
        {
            "start": 872779394,
            "stop": 872779404
        },
        {
            "start": 872779438,
            "stop": 872779445
        },
        {
            "start": 872779683,
            "stop": 872780055
        },
        {
            "start": 872780175,
            "stop": 872780640
        },
        {
            "start": 872780880,
            "stop": 872780940
        },
        {
            "start": 872781000,
            "stop": 872781829
        },
        {
            "start": 872781845,
            "stop": 872782265
        },
        {
            "start": 872782282,
            "stop": 872785542
        },
        {
            "start": 872785760,
            "stop": 872786966
        },
        {
            "start": 872787086,
            "stop": 872788800
        },
        {
            "start": 872789280,
            "stop": 872793345
        },
        {
            "start": 872793577,
            "stop": 872793935
        },
        {
            "start": 872794293,
            "stop": 872797436
        },
        {
            "start": 872797556,
            "stop": 872799330
        },
        {
            "start": 872800447,
            "stop": 872803910
        },
        {
            "start": 872804030,
            "stop": 872804411
        },
        {
            "start": 872804643,
            "stop": 872805049
        }
    ]
}