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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=223",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=221",
    "results_count": 97650,
    "results_per_page": 20,
    "num_pages": 4883,
    "page_number": 222,
    "results": [
        {
            "start": 933145234,
            "stop": 933145244
        },
        {
            "start": 933145273,
            "stop": 933145356
        },
        {
            "start": 933145357,
            "stop": 933145564
        },
        {
            "start": 933145583,
            "stop": 933145595
        },
        {
            "start": 933145618,
            "stop": 933145627
        },
        {
            "start": 933145663,
            "stop": 933145706
        },
        {
            "start": 933145732,
            "stop": 933145813
        },
        {
            "start": 933145832,
            "stop": 933145859
        },
        {
            "start": 933145878,
            "stop": 933145882
        },
        {
            "start": 933145902,
            "stop": 933145962
        },
        {
            "start": 933145981,
            "stop": 933146095
        },
        {
            "start": 933146113,
            "stop": 933146200
        },
        {
            "start": 933146219,
            "stop": 933146228
        },
        {
            "start": 933146246,
            "stop": 933146247
        },
        {
            "start": 933146282,
            "stop": 933146370
        },
        {
            "start": 933146402,
            "stop": 933146414
        },
        {
            "start": 933146466,
            "stop": 933146468
        },
        {
            "start": 933146560,
            "stop": 933146592
        },
        {
            "start": 933146634,
            "stop": 933146648
        },
        {
            "start": 933146680,
            "stop": 933146702
        }
    ]
}