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=15
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=16",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=14",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 15,
    "results": [
        {
            "start": 817348937,
            "stop": 817351025
        },
        {
            "start": 817352166,
            "stop": 817353363
        },
        {
            "start": 817353364,
            "stop": 817353389
        },
        {
            "start": 817353587,
            "stop": 817362446
        },
        {
            "start": 817363929,
            "stop": 817398365
        },
        {
            "start": 817398367,
            "stop": 817398387
        },
        {
            "start": 817404620,
            "stop": 817404970
        },
        {
            "start": 817405819,
            "stop": 817408088
        },
        {
            "start": 817408137,
            "stop": 817412739
        },
        {
            "start": 817412741,
            "stop": 817412819
        },
        {
            "start": 817414689,
            "stop": 817417665
        },
        {
            "start": 817417667,
            "stop": 817417692
        },
        {
            "start": 817417918,
            "stop": 817417958
        },
        {
            "start": 817418071,
            "stop": 817419802
        },
        {
            "start": 817419804,
            "stop": 817419823
        },
        {
            "start": 817419877,
            "stop": 817423352
        },
        {
            "start": 817424327,
            "stop": 817425722
        },
        {
            "start": 817427752,
            "stop": 817431882
        },
        {
            "start": 817432099,
            "stop": 817439449
        },
        {
            "start": 817439542,
            "stop": 817442404
        }
    ]
}