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=456
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=457",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=455",
    "results_count": 146533,
    "results_per_page": 20,
    "num_pages": 7327,
    "page_number": 456,
    "results": [
        {
            "start": 847828007,
            "stop": 847828015
        },
        {
            "start": 847828016,
            "stop": 847828216
        },
        {
            "start": 847828217,
            "stop": 847828296
        },
        {
            "start": 847828298,
            "stop": 847828301
        },
        {
            "start": 847828302,
            "stop": 847828303
        },
        {
            "start": 847828304,
            "stop": 847828314
        },
        {
            "start": 847828315,
            "stop": 847828327
        },
        {
            "start": 847828328,
            "stop": 847828329
        },
        {
            "start": 847828335,
            "stop": 847828346
        },
        {
            "start": 847828347,
            "stop": 847828350
        },
        {
            "start": 847828358,
            "stop": 847828380
        },
        {
            "start": 847828381,
            "stop": 847828411
        },
        {
            "start": 847828412,
            "stop": 847828420
        },
        {
            "start": 847828421,
            "stop": 847828424
        },
        {
            "start": 847828426,
            "stop": 847828431
        },
        {
            "start": 847828432,
            "stop": 847828473
        },
        {
            "start": 847828474,
            "stop": 847828489
        },
        {
            "start": 847828491,
            "stop": 847828527
        },
        {
            "start": 847828528,
            "stop": 847828539
        },
        {
            "start": 847828540,
            "stop": 847828549
        }
    ]
}