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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_DATA/segments?format=api&page=232",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_DATA/segments?format=api&page=230",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 231,
    "results": [
        {
            "start": 857094653,
            "stop": 857113950
        },
        {
            "start": 857114468,
            "stop": 857136254
        },
        {
            "start": 857136921,
            "stop": 857157024
        },
        {
            "start": 857157120,
            "stop": 857159637
        },
        {
            "start": 857163203,
            "stop": 857168641
        },
        {
            "start": 857168738,
            "stop": 857192830
        },
        {
            "start": 857199321,
            "stop": 857200244
        },
        {
            "start": 857205413,
            "stop": 857222601
        },
        {
            "start": 857224336,
            "stop": 857229481
        },
        {
            "start": 857230535,
            "stop": 857232017
        },
        {
            "start": 857248718,
            "stop": 857254725
        },
        {
            "start": 857256691,
            "stop": 857290117
        },
        {
            "start": 857291256,
            "stop": 857307079
        },
        {
            "start": 857308022,
            "stop": 857308194
        },
        {
            "start": 857309511,
            "stop": 857311743
        },
        {
            "start": 857313349,
            "stop": 857319698
        },
        {
            "start": 857321086,
            "stop": 857340311
        },
        {
            "start": 857341893,
            "stop": 857342207
        },
        {
            "start": 857342994,
            "stop": 857368570
        },
        {
            "start": 857369137,
            "stop": 857378307
        }
    ]
}