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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT2/segments?format=api&page=1701",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT2/segments?format=api&page=1699",
    "results_count": 37993,
    "results_per_page": 20,
    "num_pages": 1900,
    "page_number": 1700,
    "results": [
        {
            "start": 957675998,
            "stop": 957676314
        },
        {
            "start": 957676316,
            "stop": 957676592
        },
        {
            "start": 957676594,
            "stop": 957677258
        },
        {
            "start": 957677260,
            "stop": 957677600
        },
        {
            "start": 957677602,
            "stop": 957677660
        },
        {
            "start": 957677662,
            "stop": 957677729
        },
        {
            "start": 957677731,
            "stop": 957678109
        },
        {
            "start": 957678111,
            "stop": 957678404
        },
        {
            "start": 957678406,
            "stop": 957678629
        },
        {
            "start": 957678631,
            "stop": 957679440
        },
        {
            "start": 957679442,
            "stop": 957679798
        },
        {
            "start": 957679800,
            "stop": 957680378
        },
        {
            "start": 957680380,
            "stop": 957680403
        },
        {
            "start": 957680405,
            "stop": 957680439
        },
        {
            "start": 957680441,
            "stop": 957680509
        },
        {
            "start": 957680511,
            "stop": 957680817
        },
        {
            "start": 957680819,
            "stop": 957681018
        },
        {
            "start": 957681020,
            "stop": 957681054
        },
        {
            "start": 957681056,
            "stop": 957681121
        },
        {
            "start": 957681123,
            "stop": 957681394
        }
    ]
}