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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=110",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 111,
    "results": [
        {
            "start": 830893863,
            "stop": 830895017
        },
        {
            "start": 830897036,
            "stop": 830904579
        },
        {
            "start": 830907462,
            "stop": 830917354
        },
        {
            "start": 830917355,
            "stop": 830935615
        },
        {
            "start": 830935617,
            "stop": 830960220
        },
        {
            "start": 830960222,
            "stop": 830985165
        },
        {
            "start": 830987086,
            "stop": 830987126
        },
        {
            "start": 830987210,
            "stop": 830999187
        },
        {
            "start": 830999297,
            "stop": 830999333
        },
        {
            "start": 830999633,
            "stop": 831000662
        },
        {
            "start": 831000772,
            "stop": 831000832
        },
        {
            "start": 831001362,
            "stop": 831001374
        },
        {
            "start": 831001752,
            "stop": 831001785
        },
        {
            "start": 831001895,
            "stop": 831002616
        },
        {
            "start": 831002916,
            "stop": 831005083
        },
        {
            "start": 831005383,
            "stop": 831008212
        },
        {
            "start": 831008512,
            "stop": 831019617
        },
        {
            "start": 831019618,
            "stop": 831022699
        },
        {
            "start": 831022809,
            "stop": 831023054
        },
        {
            "start": 831023354,
            "stop": 831038949
        }
    ]
}