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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=50",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=48",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 49,
    "results": [
        {
            "start": 847267252,
            "stop": 847267395
        },
        {
            "start": 847298060,
            "stop": 847298204
        },
        {
            "start": 847332654,
            "stop": 847332780
        },
        {
            "start": 847349019,
            "stop": 847349155
        },
        {
            "start": 847357980,
            "stop": 847358108
        },
        {
            "start": 847373452,
            "stop": 847373587
        },
        {
            "start": 847479773,
            "stop": 847479973
        },
        {
            "start": 847494420,
            "stop": 847494620
        },
        {
            "start": 847503637,
            "stop": 847503852
        },
        {
            "start": 847519109,
            "stop": 847519245
        },
        {
            "start": 847530021,
            "stop": 847530148
        },
        {
            "start": 847541805,
            "stop": 847541949
        },
        {
            "start": 847742410,
            "stop": 847742547
        },
        {
            "start": 847784578,
            "stop": 847784707
        },
        {
            "start": 847798107,
            "stop": 847798250
        },
        {
            "start": 847804370,
            "stop": 847804570
        },
        {
            "start": 847810202,
            "stop": 847810338
        },
        {
            "start": 847818937,
            "stop": 847819073
        },
        {
            "start": 847875338,
            "stop": 847875482
        },
        {
            "start": 847904490,
            "stop": 847904634
        }
    ]
}