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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3142",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3140",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 3141,
    "results": [
        {
            "start": 868653548,
            "stop": 868653578
        },
        {
            "start": 868653949,
            "stop": 868654758
        },
        {
            "start": 868654939,
            "stop": 868655500
        },
        {
            "start": 868656031,
            "stop": 868656032
        },
        {
            "start": 868656037,
            "stop": 868657745
        },
        {
            "start": 868657749,
            "stop": 868659480
        },
        {
            "start": 868659600,
            "stop": 868660873
        },
        {
            "start": 868661097,
            "stop": 868661440
        },
        {
            "start": 868661446,
            "stop": 868661457
        },
        {
            "start": 868661462,
            "stop": 868661468
        },
        {
            "start": 868661817,
            "stop": 868662464
        },
        {
            "start": 868664226,
            "stop": 868665600
        },
        {
            "start": 868665660,
            "stop": 868667640
        },
        {
            "start": 868667700,
            "stop": 868668921
        },
        {
            "start": 868668926,
            "stop": 868668929
        },
        {
            "start": 868668933,
            "stop": 868669440
        },
        {
            "start": 868669500,
            "stop": 868673460
        },
        {
            "start": 868673640,
            "stop": 868675920
        },
        {
            "start": 868675980,
            "stop": 868681174
        },
        {
            "start": 868681185,
            "stop": 868681620
        }
    ]
}