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=201
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=202",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CW_CAT1/segments?format=api&page=200",
    "results_count": 6331,
    "results_per_page": 20,
    "num_pages": 317,
    "page_number": 201,
    "results": [
        {
            "start": 956909780,
            "stop": 956909782
        },
        {
            "start": 956909785,
            "stop": 956909823
        },
        {
            "start": 956909827,
            "stop": 956909832
        },
        {
            "start": 956909836,
            "stop": 956909839
        },
        {
            "start": 956919553,
            "stop": 956919558
        },
        {
            "start": 956919563,
            "stop": 956919581
        },
        {
            "start": 956919586,
            "stop": 956919597
        },
        {
            "start": 956919603,
            "stop": 956919606
        },
        {
            "start": 956919615,
            "stop": 956919620
        },
        {
            "start": 956919629,
            "stop": 956919665
        },
        {
            "start": 956919668,
            "stop": 956919674
        },
        {
            "start": 956919686,
            "stop": 956919688
        },
        {
            "start": 956919705,
            "stop": 956919708
        },
        {
            "start": 956919728,
            "stop": 956919788
        },
        {
            "start": 956919793,
            "stop": 956919848
        },
        {
            "start": 956919851,
            "stop": 956919859
        },
        {
            "start": 956919867,
            "stop": 956919870
        },
        {
            "start": 956919876,
            "stop": 956919884
        },
        {
            "start": 956919932,
            "stop": 956919934
        },
        {
            "start": 956919960,
            "stop": 956919962
        }
    ]
}