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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=99",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 100,
    "results": [
        {
            "start": 819728620,
            "stop": 819728682
        },
        {
            "start": 819728689,
            "stop": 819728748
        },
        {
            "start": 819728755,
            "stop": 819728894
        },
        {
            "start": 819728901,
            "stop": 819728986
        },
        {
            "start": 819728994,
            "stop": 819729073
        },
        {
            "start": 819731983,
            "stop": 819732432
        },
        {
            "start": 819732439,
            "stop": 819732595
        },
        {
            "start": 819732607,
            "stop": 819732792
        },
        {
            "start": 819732799,
            "stop": 819732868
        },
        {
            "start": 819732876,
            "stop": 819733223
        },
        {
            "start": 819733235,
            "stop": 819733303
        },
        {
            "start": 819733311,
            "stop": 819733510
        },
        {
            "start": 819733517,
            "stop": 819733710
        },
        {
            "start": 819733717,
            "stop": 819733866
        },
        {
            "start": 819733873,
            "stop": 819733919
        },
        {
            "start": 819733927,
            "stop": 819734321
        },
        {
            "start": 819734328,
            "stop": 819734395
        },
        {
            "start": 819734402,
            "stop": 819734448
        },
        {
            "start": 819734455,
            "stop": 819734586
        },
        {
            "start": 819734594,
            "stop": 819734712
        }
    ]
}