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=345
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=346",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=344",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 345,
    "results": [
        {
            "start": 846295258,
            "stop": 846317102
        },
        {
            "start": 846317907,
            "stop": 846318448
        },
        {
            "start": 846318450,
            "stop": 846337091
        },
        {
            "start": 846387595,
            "stop": 846387708
        },
        {
            "start": 846387710,
            "stop": 846388938
        },
        {
            "start": 846388940,
            "stop": 846389147
        },
        {
            "start": 846389148,
            "stop": 846390161
        },
        {
            "start": 846390656,
            "stop": 846403104
        },
        {
            "start": 846404042,
            "stop": 846408635
        },
        {
            "start": 846409690,
            "stop": 846411164
        },
        {
            "start": 846411353,
            "stop": 846423824
        },
        {
            "start": 846425696,
            "stop": 846432025
        },
        {
            "start": 846432848,
            "stop": 846434800
        },
        {
            "start": 846434815,
            "stop": 846435508
        },
        {
            "start": 846435530,
            "stop": 846436133
        },
        {
            "start": 846437097,
            "stop": 846442632
        },
        {
            "start": 846443890,
            "stop": 846444953
        },
        {
            "start": 846446168,
            "stop": 846447018
        },
        {
            "start": 846447020,
            "stop": 846451258
        },
        {
            "start": 846451260,
            "stop": 846452782
        }
    ]
}