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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT4/segments?format=api&page=8602",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT4/segments?format=api&page=8600",
    "results_count": 177886,
    "results_per_page": 20,
    "num_pages": 8895,
    "page_number": 8601,
    "results": [
        {
            "start": 870740682,
            "stop": 870740750
        },
        {
            "start": 870740890,
            "stop": 870741000
        },
        {
            "start": 870741060,
            "stop": 870741350
        },
        {
            "start": 870741430,
            "stop": 870742912
        },
        {
            "start": 870745209,
            "stop": 870745440
        },
        {
            "start": 870745500,
            "stop": 870749058
        },
        {
            "start": 870749075,
            "stop": 870749880
        },
        {
            "start": 870749940,
            "stop": 870750000
        },
        {
            "start": 870750120,
            "stop": 870750240
        },
        {
            "start": 870750300,
            "stop": 870750780
        },
        {
            "start": 870750900,
            "stop": 870751310
        },
        {
            "start": 870751390,
            "stop": 870751740
        },
        {
            "start": 870751920,
            "stop": 870752743
        },
        {
            "start": 870752760,
            "stop": 870752880
        },
        {
            "start": 870752940,
            "stop": 870753300
        },
        {
            "start": 870753360,
            "stop": 870753660
        },
        {
            "start": 870753720,
            "stop": 870753960
        },
        {
            "start": 870754080,
            "stop": 870754140
        },
        {
            "start": 870754200,
            "stop": 870754620
        },
        {
            "start": 870754680,
            "stop": 870754920
        }
    ]
}