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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=301",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=299",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 300,
    "results": [
        {
            "start": 842062256,
            "stop": 842062446
        },
        {
            "start": 842062448,
            "stop": 842063971
        },
        {
            "start": 842063973,
            "stop": 842064146
        },
        {
            "start": 842064148,
            "stop": 842065108
        },
        {
            "start": 842065110,
            "stop": 842066584
        },
        {
            "start": 842066586,
            "stop": 842066587
        },
        {
            "start": 842066589,
            "stop": 842070417
        },
        {
            "start": 842070420,
            "stop": 842071154
        },
        {
            "start": 842071159,
            "stop": 842074242
        },
        {
            "start": 842074244,
            "stop": 842074397
        },
        {
            "start": 842074399,
            "stop": 842074649
        },
        {
            "start": 842074874,
            "stop": 842075954
        },
        {
            "start": 842075955,
            "stop": 842079590
        },
        {
            "start": 842079593,
            "stop": 842087758
        },
        {
            "start": 842087760,
            "stop": 842096753
        },
        {
            "start": 842096755,
            "stop": 842099545
        },
        {
            "start": 842099547,
            "stop": 842103947
        },
        {
            "start": 842103948,
            "stop": 842104227
        },
        {
            "start": 842135755,
            "stop": 842136647
        },
        {
            "start": 842136649,
            "stop": 842139037
        }
    ]
}