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/O4a/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/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=12",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=10",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 11,
    "results": [
        {
            "start": 1369181663,
            "stop": 1369182763
        },
        {
            "start": 1369182768,
            "stop": 1369185188
        },
        {
            "start": 1369185190,
            "stop": 1369187020
        },
        {
            "start": 1369187022,
            "stop": 1369189283
        },
        {
            "start": 1369189285,
            "stop": 1369191172
        },
        {
            "start": 1369191177,
            "stop": 1369193368
        },
        {
            "start": 1369193370,
            "stop": 1369195410
        },
        {
            "start": 1369195412,
            "stop": 1369195679
        },
        {
            "start": 1369195684,
            "stop": 1369196438
        },
        {
            "start": 1369196440,
            "stop": 1369196579
        },
        {
            "start": 1369196582,
            "stop": 1369197839
        },
        {
            "start": 1369197841,
            "stop": 1369198923
        },
        {
            "start": 1369198924,
            "stop": 1369199479
        },
        {
            "start": 1369199482,
            "stop": 1369199999
        },
        {
            "start": 1369200000,
            "stop": 1369200277
        },
        {
            "start": 1369200279,
            "stop": 1369201288
        },
        {
            "start": 1369201289,
            "stop": 1369202482
        },
        {
            "start": 1369202484,
            "stop": 1369203634
        },
        {
            "start": 1369203636,
            "stop": 1369205017
        },
        {
            "start": 1369205019,
            "stop": 1369206198
        }
    ]
}