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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=122",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 123,
    "results": [
        {
            "start": 832383171,
            "stop": 832383733
        },
        {
            "start": 832383743,
            "stop": 832383744
        },
        {
            "start": 832383809,
            "stop": 832397293
        },
        {
            "start": 832398341,
            "stop": 832401071
        },
        {
            "start": 832401687,
            "stop": 832414393
        },
        {
            "start": 832415191,
            "stop": 832421053
        },
        {
            "start": 832422612,
            "stop": 832423247
        },
        {
            "start": 832446533,
            "stop": 832480273
        },
        {
            "start": 832484004,
            "stop": 832491235
        },
        {
            "start": 832491997,
            "stop": 832496820
        },
        {
            "start": 832496935,
            "stop": 832505533
        },
        {
            "start": 832505575,
            "stop": 832505576
        },
        {
            "start": 832505745,
            "stop": 832506211
        },
        {
            "start": 832506657,
            "stop": 832507258
        },
        {
            "start": 832513923,
            "stop": 832514333
        },
        {
            "start": 832518526,
            "stop": 832521493
        },
        {
            "start": 832521508,
            "stop": 832521509
        },
        {
            "start": 832526812,
            "stop": 832527553
        },
        {
            "start": 832529971,
            "stop": 832530133
        },
        {
            "start": 832530156,
            "stop": 832530157
        }
    ]
}