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=256
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=257",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=255",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 256,
    "results": [
        {
            "start": 857735398,
            "stop": 857735430
        },
        {
            "start": 857735501,
            "stop": 857735600
        },
        {
            "start": 857738310,
            "stop": 857738910
        },
        {
            "start": 857741615,
            "stop": 857742918
        },
        {
            "start": 857743218,
            "stop": 857749052
        },
        {
            "start": 857749239,
            "stop": 857755024
        },
        {
            "start": 857755325,
            "stop": 857755485
        },
        {
            "start": 857761777,
            "stop": 857761798
        },
        {
            "start": 857761908,
            "stop": 857762451
        },
        {
            "start": 857762918,
            "stop": 857763145
        },
        {
            "start": 857763147,
            "stop": 857763711
        },
        {
            "start": 857763821,
            "stop": 857764030
        },
        {
            "start": 857765766,
            "stop": 857766127
        },
        {
            "start": 857766235,
            "stop": 857766586
        },
        {
            "start": 857767892,
            "stop": 857769111
        },
        {
            "start": 857769411,
            "stop": 857769458
        },
        {
            "start": 857769568,
            "stop": 857772093
        },
        {
            "start": 857773443,
            "stop": 857774138
        },
        {
            "start": 857774438,
            "stop": 857774439
        },
        {
            "start": 857774549,
            "stop": 857777591
        }
    ]
}