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/O1/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/O1/timelines/H1_BURST_CAT3/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/H1_BURST_CAT3/segments?format=api&page=99",
    "results_count": 106837,
    "results_per_page": 20,
    "num_pages": 5342,
    "page_number": 100,
    "results": [
        {
            "start": 1126580486,
            "stop": 1126580504
        },
        {
            "start": 1126580506,
            "stop": 1126580695
        },
        {
            "start": 1126580696,
            "stop": 1126581028
        },
        {
            "start": 1126581029,
            "stop": 1126581314
        },
        {
            "start": 1126581316,
            "stop": 1126581350
        },
        {
            "start": 1126581352,
            "stop": 1126581516
        },
        {
            "start": 1126581518,
            "stop": 1126581693
        },
        {
            "start": 1126581694,
            "stop": 1126581699
        },
        {
            "start": 1126581700,
            "stop": 1126581731
        },
        {
            "start": 1126581733,
            "stop": 1126581740
        },
        {
            "start": 1126581744,
            "stop": 1126581826
        },
        {
            "start": 1126581833,
            "stop": 1126581951
        },
        {
            "start": 1126581952,
            "stop": 1126582064
        },
        {
            "start": 1126582065,
            "stop": 1126582425
        },
        {
            "start": 1126582426,
            "stop": 1126582745
        },
        {
            "start": 1126582746,
            "stop": 1126582761
        },
        {
            "start": 1126582763,
            "stop": 1126583058
        },
        {
            "start": 1126583059,
            "stop": 1126583063
        },
        {
            "start": 1126583065,
            "stop": 1126583073
        },
        {
            "start": 1126583080,
            "stop": 1126583372
        }
    ]
}