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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_BURST_CAT3/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_BURST_CAT3/segments?format=api&page=99",
    "results_count": 11548,
    "results_per_page": 20,
    "num_pages": 578,
    "page_number": 100,
    "results": [
        {
            "start": 1175015120,
            "stop": 1175015440
        },
        {
            "start": 1175015450,
            "stop": 1175017060
        },
        {
            "start": 1175017100,
            "stop": 1175018110
        },
        {
            "start": 1175018120,
            "stop": 1175018260
        },
        {
            "start": 1175018270,
            "stop": 1175020280
        },
        {
            "start": 1175020310,
            "stop": 1175020320
        },
        {
            "start": 1175020350,
            "stop": 1175021770
        },
        {
            "start": 1175021840,
            "stop": 1175023890
        },
        {
            "start": 1175023900,
            "stop": 1175024280
        },
        {
            "start": 1175024320,
            "stop": 1175025160
        },
        {
            "start": 1175025200,
            "stop": 1175025780
        },
        {
            "start": 1175025810,
            "stop": 1175026220
        },
        {
            "start": 1175026230,
            "stop": 1175026280
        },
        {
            "start": 1175026320,
            "stop": 1175026820
        },
        {
            "start": 1175026900,
            "stop": 1175026910
        },
        {
            "start": 1175026930,
            "stop": 1175028880
        },
        {
            "start": 1175028890,
            "stop": 1175028900
        },
        {
            "start": 1175028910,
            "stop": 1175030360
        },
        {
            "start": 1175030370,
            "stop": 1175031210
        },
        {
            "start": 1175031300,
            "stop": 1175031310
        }
    ]
}