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=50
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=51",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=49",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 50,
    "results": [
        {
            "start": 816459272,
            "stop": 816459284
        },
        {
            "start": 816459297,
            "stop": 816459298
        },
        {
            "start": 816459305,
            "stop": 816459307
        },
        {
            "start": 816459312,
            "stop": 816459496
        },
        {
            "start": 816459502,
            "stop": 816459716
        },
        {
            "start": 816459721,
            "stop": 816459781
        },
        {
            "start": 816459788,
            "stop": 816459805
        },
        {
            "start": 816459809,
            "stop": 816459821
        },
        {
            "start": 816459826,
            "stop": 816459845
        },
        {
            "start": 816459852,
            "stop": 816459854
        },
        {
            "start": 816459860,
            "stop": 816459862
        },
        {
            "start": 816459869,
            "stop": 816459944
        },
        {
            "start": 816459948,
            "stop": 816460010
        },
        {
            "start": 816460017,
            "stop": 816460019
        },
        {
            "start": 816460025,
            "stop": 816460027
        },
        {
            "start": 816460032,
            "stop": 816460056
        },
        {
            "start": 816460061,
            "stop": 816460064
        },
        {
            "start": 816460070,
            "stop": 816460073
        },
        {
            "start": 816460078,
            "stop": 816460142
        },
        {
            "start": 816460147,
            "stop": 816460171
        }
    ]
}