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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT3/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT3/segments?format=api&page=249",
    "results_count": 289660,
    "results_per_page": 20,
    "num_pages": 14483,
    "page_number": 250,
    "results": [
        {
            "start": 931678581,
            "stop": 931678593
        },
        {
            "start": 931678596,
            "stop": 931678601
        },
        {
            "start": 931678604,
            "stop": 931678605
        },
        {
            "start": 931678608,
            "stop": 931678610
        },
        {
            "start": 931678619,
            "stop": 931678621
        },
        {
            "start": 931678624,
            "stop": 931678627
        },
        {
            "start": 931678636,
            "stop": 931678650
        },
        {
            "start": 931678655,
            "stop": 931678656
        },
        {
            "start": 931678665,
            "stop": 931678666
        },
        {
            "start": 931678669,
            "stop": 931678672
        },
        {
            "start": 931678676,
            "stop": 931678687
        },
        {
            "start": 931678692,
            "stop": 931678698
        },
        {
            "start": 931678701,
            "stop": 931678705
        },
        {
            "start": 931678709,
            "stop": 931678714
        },
        {
            "start": 931678719,
            "stop": 931678722
        },
        {
            "start": 931678725,
            "stop": 931678727
        },
        {
            "start": 931678730,
            "stop": 931678733
        },
        {
            "start": 931678736,
            "stop": 931678740
        },
        {
            "start": 931678743,
            "stop": 931678744
        },
        {
            "start": 931678747,
            "stop": 931678750
        }
    ]
}