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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=9877",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=9875",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 9876,
    "results": [
        {
            "start": 870806697,
            "stop": 870806700
        },
        {
            "start": 870806820,
            "stop": 870807239
        },
        {
            "start": 870807273,
            "stop": 870807360
        },
        {
            "start": 870807420,
            "stop": 870810040
        },
        {
            "start": 870810255,
            "stop": 870811467
        },
        {
            "start": 870811507,
            "stop": 870811559
        },
        {
            "start": 870811593,
            "stop": 870814257
        },
        {
            "start": 870814274,
            "stop": 870817560
        },
        {
            "start": 870817594,
            "stop": 870818240
        },
        {
            "start": 870818274,
            "stop": 870819245
        },
        {
            "start": 870819279,
            "stop": 870820269
        },
        {
            "start": 870820276,
            "stop": 870824673
        },
        {
            "start": 870824681,
            "stop": 870824854
        },
        {
            "start": 870824905,
            "stop": 870824920
        },
        {
            "start": 870824956,
            "stop": 870826128
        },
        {
            "start": 870826136,
            "stop": 870826542
        },
        {
            "start": 870826549,
            "stop": 870827033
        },
        {
            "start": 870827040,
            "stop": 870827047
        },
        {
            "start": 870827084,
            "stop": 870827085
        },
        {
            "start": 870827146,
            "stop": 870827148
        }
    ]
}