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=32
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=33",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=31",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 32,
    "results": [
        {
            "start": 1126356519,
            "stop": 1126356616
        },
        {
            "start": 1126356618,
            "stop": 1126357011
        },
        {
            "start": 1126357012,
            "stop": 1126357120
        },
        {
            "start": 1126357121,
            "stop": 1126357224
        },
        {
            "start": 1126357226,
            "stop": 1126357395
        },
        {
            "start": 1126357396,
            "stop": 1126357558
        },
        {
            "start": 1126357559,
            "stop": 1126357719
        },
        {
            "start": 1126357720,
            "stop": 1126357825
        },
        {
            "start": 1126357826,
            "stop": 1126357923
        },
        {
            "start": 1126357924,
            "stop": 1126358109
        },
        {
            "start": 1126358110,
            "stop": 1126358434
        },
        {
            "start": 1126358435,
            "stop": 1126358539
        },
        {
            "start": 1126358541,
            "stop": 1126358637
        },
        {
            "start": 1126358638,
            "stop": 1126358818
        },
        {
            "start": 1126358819,
            "stop": 1126359173
        },
        {
            "start": 1126359174,
            "stop": 1126359376
        },
        {
            "start": 1126359377,
            "stop": 1126359545
        },
        {
            "start": 1126359546,
            "stop": 1126359755
        },
        {
            "start": 1126359756,
            "stop": 1126359852
        },
        {
            "start": 1126359853,
            "stop": 1126359955
        }
    ]
}