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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=146",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=144",
    "results_count": 3818,
    "results_per_page": 20,
    "num_pages": 191,
    "page_number": 145,
    "results": [
        {
            "start": 857433771,
            "stop": 857435218
        },
        {
            "start": 857435466,
            "stop": 857442471
        },
        {
            "start": 857442487,
            "stop": 857445597
        },
        {
            "start": 857447941,
            "stop": 857448534
        },
        {
            "start": 857448537,
            "stop": 857477592
        },
        {
            "start": 857477949,
            "stop": 857498438
        },
        {
            "start": 857500271,
            "stop": 857501002
        },
        {
            "start": 857502075,
            "stop": 857502338
        },
        {
            "start": 857502489,
            "stop": 857502722
        },
        {
            "start": 857503094,
            "stop": 857505419
        },
        {
            "start": 857505950,
            "stop": 857509768
        },
        {
            "start": 857511926,
            "stop": 857516526
        },
        {
            "start": 857517557,
            "stop": 857518092
        },
        {
            "start": 857518333,
            "stop": 857591710
        },
        {
            "start": 857591952,
            "stop": 857592086
        },
        {
            "start": 857593865,
            "stop": 857596931
        },
        {
            "start": 857597961,
            "stop": 857608152
        },
        {
            "start": 857608689,
            "stop": 857632804
        },
        {
            "start": 857633884,
            "stop": 857639339
        },
        {
            "start": 857641735,
            "stop": 857645452
        }
    ]
}