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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CW_CAT1/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CW_CAT1/segments?format=api&page=199",
    "results_count": 6331,
    "results_per_page": 20,
    "num_pages": 317,
    "page_number": 200,
    "results": [
        {
            "start": 956909234,
            "stop": 956909299
        },
        {
            "start": 956909302,
            "stop": 956909335
        },
        {
            "start": 956909339,
            "stop": 956909395
        },
        {
            "start": 956909398,
            "stop": 956909508
        },
        {
            "start": 956909514,
            "stop": 956909518
        },
        {
            "start": 956909521,
            "stop": 956909522
        },
        {
            "start": 956909530,
            "stop": 956909584
        },
        {
            "start": 956909586,
            "stop": 956909601
        },
        {
            "start": 956909603,
            "stop": 956909612
        },
        {
            "start": 956909614,
            "stop": 956909623
        },
        {
            "start": 956909633,
            "stop": 956909650
        },
        {
            "start": 956909653,
            "stop": 956909654
        },
        {
            "start": 956909658,
            "stop": 956909672
        },
        {
            "start": 956909681,
            "stop": 956909688
        },
        {
            "start": 956909694,
            "stop": 956909697
        },
        {
            "start": 956909714,
            "stop": 956909718
        },
        {
            "start": 956909731,
            "stop": 956909732
        },
        {
            "start": 956909740,
            "stop": 956909745
        },
        {
            "start": 956909762,
            "stop": 956909766
        },
        {
            "start": 956909769,
            "stop": 956909771
        }
    ]
}