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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=122",
    "results_count": 81107,
    "results_per_page": 20,
    "num_pages": 4056,
    "page_number": 123,
    "results": [
        {
            "start": 818067421,
            "stop": 818067423
        },
        {
            "start": 818067427,
            "stop": 818067431
        },
        {
            "start": 818067437,
            "stop": 818067438
        },
        {
            "start": 818067441,
            "stop": 818067443
        },
        {
            "start": 818067447,
            "stop": 818067451
        },
        {
            "start": 818067454,
            "stop": 818067458
        },
        {
            "start": 818067462,
            "stop": 818067478
        },
        {
            "start": 818067486,
            "stop": 818067488
        },
        {
            "start": 818067491,
            "stop": 818067493
        },
        {
            "start": 818067496,
            "stop": 818067499
        },
        {
            "start": 818067504,
            "stop": 818067510
        },
        {
            "start": 818067513,
            "stop": 818067526
        },
        {
            "start": 818067529,
            "stop": 818067533
        },
        {
            "start": 818067536,
            "stop": 818067538
        },
        {
            "start": 818067545,
            "stop": 818067560
        },
        {
            "start": 818067568,
            "stop": 818067586
        },
        {
            "start": 818067591,
            "stop": 818067596
        },
        {
            "start": 818067600,
            "stop": 818067601
        },
        {
            "start": 818067605,
            "stop": 818067608
        },
        {
            "start": 818067611,
            "stop": 818067628
        }
    ]
}