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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=322",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=320",
    "results_count": 146533,
    "results_per_page": 20,
    "num_pages": 7327,
    "page_number": 321,
    "results": [
        {
            "start": 847703113,
            "stop": 847703145
        },
        {
            "start": 847703147,
            "stop": 847703148
        },
        {
            "start": 847703149,
            "stop": 847703162
        },
        {
            "start": 847703164,
            "stop": 847703165
        },
        {
            "start": 847703166,
            "stop": 847703207
        },
        {
            "start": 847703209,
            "stop": 847703237
        },
        {
            "start": 847703238,
            "stop": 847703240
        },
        {
            "start": 847703241,
            "stop": 847703287
        },
        {
            "start": 847703289,
            "stop": 847703443
        },
        {
            "start": 847703444,
            "stop": 847703448
        },
        {
            "start": 847703450,
            "stop": 847703528
        },
        {
            "start": 847703529,
            "stop": 847703548
        },
        {
            "start": 847703550,
            "stop": 847703570
        },
        {
            "start": 847703571,
            "stop": 847703591
        },
        {
            "start": 847703593,
            "stop": 847703613
        },
        {
            "start": 847703614,
            "stop": 847703816
        },
        {
            "start": 847703817,
            "stop": 847703837
        },
        {
            "start": 847703839,
            "stop": 847703867
        },
        {
            "start": 847703868,
            "stop": 847703952
        },
        {
            "start": 847703954,
            "stop": 847703975
        }
    ]
}