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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=12",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=10",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 11,
    "results": [
        {
            "start": 1126104390,
            "stop": 1126104494
        },
        {
            "start": 1126104495,
            "stop": 1126104558
        },
        {
            "start": 1126104559,
            "stop": 1126104716
        },
        {
            "start": 1126104717,
            "stop": 1126104795
        },
        {
            "start": 1126104797,
            "stop": 1126105009
        },
        {
            "start": 1126105010,
            "stop": 1126105069
        },
        {
            "start": 1126105071,
            "stop": 1126105072
        },
        {
            "start": 1126105074,
            "stop": 1126105077
        },
        {
            "start": 1126105081,
            "stop": 1126105116
        },
        {
            "start": 1126105117,
            "stop": 1126105193
        },
        {
            "start": 1126105194,
            "stop": 1126105359
        },
        {
            "start": 1126105361,
            "stop": 1126105440
        },
        {
            "start": 1126105442,
            "stop": 1126105642
        },
        {
            "start": 1126105643,
            "stop": 1126105759
        },
        {
            "start": 1126105761,
            "stop": 1126105824
        },
        {
            "start": 1126105825,
            "stop": 1126105983
        },
        {
            "start": 1126105984,
            "stop": 1126106277
        },
        {
            "start": 1126106278,
            "stop": 1126106450
        },
        {
            "start": 1126106451,
            "stop": 1126106795
        },
        {
            "start": 1126106796,
            "stop": 1126106973
        }
    ]
}