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=200
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=201",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_BURST_CAT3/segments?format=api&page=199",
    "results_count": 11548,
    "results_per_page": 20,
    "num_pages": 578,
    "page_number": 200,
    "results": [
        {
            "start": 1176796460,
            "stop": 1176796491
        },
        {
            "start": 1176796494,
            "stop": 1176796603
        },
        {
            "start": 1176796605,
            "stop": 1176796875
        },
        {
            "start": 1176796876,
            "stop": 1176796877
        },
        {
            "start": 1176796879,
            "stop": 1176796883
        },
        {
            "start": 1176796884,
            "stop": 1176796970
        },
        {
            "start": 1176796971,
            "stop": 1176797015
        },
        {
            "start": 1176797016,
            "stop": 1176797269
        },
        {
            "start": 1176797270,
            "stop": 1176797400
        },
        {
            "start": 1176797401,
            "stop": 1176797456
        },
        {
            "start": 1176797459,
            "stop": 1176797460
        },
        {
            "start": 1176797461,
            "stop": 1176797537
        },
        {
            "start": 1176797539,
            "stop": 1176797555
        },
        {
            "start": 1176797559,
            "stop": 1176797679
        },
        {
            "start": 1176797682,
            "stop": 1176798069
        },
        {
            "start": 1176798071,
            "stop": 1176798073
        },
        {
            "start": 1176798075,
            "stop": 1176798169
        },
        {
            "start": 1176798173,
            "stop": 1176798449
        },
        {
            "start": 1176798452,
            "stop": 1176798463
        },
        {
            "start": 1176798465,
            "stop": 1176798469
        }
    ]
}