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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=81",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=79",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 80,
    "results": [
        {
            "start": 817657303,
            "stop": 817657320
        },
        {
            "start": 817657440,
            "stop": 817657465
        },
        {
            "start": 817657468,
            "stop": 817657928
        },
        {
            "start": 817657941,
            "stop": 817657977
        },
        {
            "start": 817657991,
            "stop": 817658350
        },
        {
            "start": 817658358,
            "stop": 817658394
        },
        {
            "start": 817658407,
            "stop": 817658576
        },
        {
            "start": 817658582,
            "stop": 817658828
        },
        {
            "start": 817658836,
            "stop": 817659095
        },
        {
            "start": 817659101,
            "stop": 817659142
        },
        {
            "start": 817659148,
            "stop": 817659446
        },
        {
            "start": 817659450,
            "stop": 817659551
        },
        {
            "start": 817659555,
            "stop": 817659611
        },
        {
            "start": 817659619,
            "stop": 817659674
        },
        {
            "start": 817659678,
            "stop": 817659721
        },
        {
            "start": 817659736,
            "stop": 817660080
        },
        {
            "start": 817660140,
            "stop": 817660200
        },
        {
            "start": 817660260,
            "stop": 817660379
        },
        {
            "start": 817660383,
            "stop": 817660574
        },
        {
            "start": 817660584,
            "stop": 817660620
        }
    ]
}