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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=5001",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=4999",
    "results_count": 104500,
    "results_per_page": 20,
    "num_pages": 5225,
    "page_number": 5000,
    "results": [
        {
            "start": 874470237,
            "stop": 874470240
        },
        {
            "start": 874470259,
            "stop": 874470306
        },
        {
            "start": 874470328,
            "stop": 874470338
        },
        {
            "start": 874470364,
            "stop": 874470423
        },
        {
            "start": 874470443,
            "stop": 874470670
        },
        {
            "start": 874470689,
            "stop": 874470759
        },
        {
            "start": 874470780,
            "stop": 874470987
        },
        {
            "start": 874471006,
            "stop": 874471023
        },
        {
            "start": 874471042,
            "stop": 874471282
        },
        {
            "start": 874471301,
            "stop": 874471700
        },
        {
            "start": 874471719,
            "stop": 874471927
        },
        {
            "start": 874471946,
            "stop": 874471983
        },
        {
            "start": 874472002,
            "stop": 874472492
        },
        {
            "start": 874472529,
            "stop": 874472532
        },
        {
            "start": 874472551,
            "stop": 874472560
        },
        {
            "start": 874472591,
            "stop": 874472699
        },
        {
            "start": 874472726,
            "stop": 874472850
        },
        {
            "start": 874472869,
            "stop": 874473414
        },
        {
            "start": 874473436,
            "stop": 874473610
        },
        {
            "start": 874473629,
            "stop": 874473686
        }
    ]
}