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=30
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=31",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=29",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 30,
    "results": [
        {
            "start": 816304518,
            "stop": 816304520
        },
        {
            "start": 816304543,
            "stop": 816304547
        },
        {
            "start": 816304552,
            "stop": 816304558
        },
        {
            "start": 816304570,
            "stop": 816304572
        },
        {
            "start": 816304578,
            "stop": 816304582
        },
        {
            "start": 816304587,
            "stop": 816304590
        },
        {
            "start": 816304595,
            "stop": 816304598
        },
        {
            "start": 816304603,
            "stop": 816304745
        },
        {
            "start": 816304750,
            "stop": 816304768
        },
        {
            "start": 816304774,
            "stop": 816304933
        },
        {
            "start": 816304941,
            "stop": 816304942
        },
        {
            "start": 816304949,
            "stop": 816304972
        },
        {
            "start": 816304979,
            "stop": 816304982
        },
        {
            "start": 816304985,
            "stop": 816305074
        },
        {
            "start": 816305078,
            "stop": 816305176
        },
        {
            "start": 816305182,
            "stop": 816305207
        },
        {
            "start": 816305216,
            "stop": 816305224
        },
        {
            "start": 816305229,
            "stop": 816305231
        },
        {
            "start": 816305237,
            "stop": 816305369
        },
        {
            "start": 816305375,
            "stop": 816305411
        }
    ]
}