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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2001",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=1999",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2000,
    "results": [
        {
            "start": 857490740,
            "stop": 857492770
        },
        {
            "start": 857492775,
            "stop": 857493177
        },
        {
            "start": 857493195,
            "stop": 857493202
        },
        {
            "start": 857493213,
            "stop": 857493215
        },
        {
            "start": 857493223,
            "stop": 857495724
        },
        {
            "start": 857495834,
            "stop": 857496257
        },
        {
            "start": 857496557,
            "stop": 857498079
        },
        {
            "start": 857498189,
            "stop": 857498438
        },
        {
            "start": 857500271,
            "stop": 857500962
        },
        {
            "start": 857502075,
            "stop": 857502270
        },
        {
            "start": 857502613,
            "stop": 857502615
        },
        {
            "start": 857502623,
            "stop": 857502722
        },
        {
            "start": 857503094,
            "stop": 857503415
        },
        {
            "start": 857503420,
            "stop": 857505212
        },
        {
            "start": 857505950,
            "stop": 857507298
        },
        {
            "start": 857507602,
            "stop": 857507680
        },
        {
            "start": 857507685,
            "stop": 857507707
        },
        {
            "start": 857507713,
            "stop": 857507732
        },
        {
            "start": 857507738,
            "stop": 857509528
        },
        {
            "start": 857512004,
            "stop": 857512014
        }
    ]
}