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=201
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=202",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=200",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 201,
    "results": [
        {
            "start": 833716636,
            "stop": 833717285
        },
        {
            "start": 833717892,
            "stop": 833717956
        },
        {
            "start": 833750405,
            "stop": 833750897
        },
        {
            "start": 833751187,
            "stop": 833752053
        },
        {
            "start": 833752055,
            "stop": 833752800
        },
        {
            "start": 833752802,
            "stop": 833752813
        },
        {
            "start": 833752815,
            "stop": 833752872
        },
        {
            "start": 833753542,
            "stop": 833778003
        },
        {
            "start": 833778005,
            "stop": 833785098
        },
        {
            "start": 833785904,
            "stop": 833799208
        },
        {
            "start": 833799702,
            "stop": 833800713
        },
        {
            "start": 833800714,
            "stop": 833803304
        },
        {
            "start": 833803354,
            "stop": 833804858
        },
        {
            "start": 833804860,
            "stop": 833805372
        },
        {
            "start": 833805373,
            "stop": 833807265
        },
        {
            "start": 833809296,
            "stop": 833809317
        },
        {
            "start": 833809319,
            "stop": 833809339
        },
        {
            "start": 833809341,
            "stop": 833809365
        },
        {
            "start": 833809367,
            "stop": 833809378
        },
        {
            "start": 833809380,
            "stop": 833809418
        }
    ]
}