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_BURST_CAT2E/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/H2_BURST_CAT2E/segments?format=api&page=51",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=49",
    "results_count": 133929,
    "results_per_page": 20,
    "num_pages": 6697,
    "page_number": 50,
    "results": [
        {
            "start": 820626973,
            "stop": 820631278
        },
        {
            "start": 820631279,
            "stop": 820635234
        },
        {
            "start": 820635641,
            "stop": 820635925
        },
        {
            "start": 820637258,
            "stop": 820641062
        },
        {
            "start": 820641158,
            "stop": 820672060
        },
        {
            "start": 820672063,
            "stop": 820695472
        },
        {
            "start": 820695985,
            "stop": 820700096
        },
        {
            "start": 820700496,
            "stop": 820712893
        },
        {
            "start": 820713379,
            "stop": 820713526
        },
        {
            "start": 820713527,
            "stop": 820716180
        },
        {
            "start": 820716500,
            "stop": 820716721
        },
        {
            "start": 820717121,
            "stop": 820732021
        },
        {
            "start": 820732616,
            "stop": 820733774
        },
        {
            "start": 820734174,
            "stop": 820741391
        },
        {
            "start": 820741844,
            "stop": 820746005
        },
        {
            "start": 820746006,
            "stop": 820748835
        },
        {
            "start": 820749298,
            "stop": 820752095
        },
        {
            "start": 820753222,
            "stop": 820755700
        },
        {
            "start": 820757980,
            "stop": 820758026
        },
        {
            "start": 820759132,
            "stop": 820759217
        }
    ]
}