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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=98",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 99,
    "results": [
        {
            "start": 819848137,
            "stop": 819848443
        },
        {
            "start": 819848624,
            "stop": 819849084
        },
        {
            "start": 819849088,
            "stop": 819849231
        },
        {
            "start": 819849236,
            "stop": 819849355
        },
        {
            "start": 819850670,
            "stop": 819850741
        },
        {
            "start": 819850744,
            "stop": 819850753
        },
        {
            "start": 819850869,
            "stop": 819851194
        },
        {
            "start": 819851197,
            "stop": 819851201
        },
        {
            "start": 819851204,
            "stop": 819851644
        },
        {
            "start": 819851647,
            "stop": 819852000
        },
        {
            "start": 819852060,
            "stop": 819853800
        },
        {
            "start": 819853860,
            "stop": 819855120
        },
        {
            "start": 819855300,
            "stop": 819856874
        },
        {
            "start": 819857006,
            "stop": 819858079
        },
        {
            "start": 819858082,
            "stop": 819858295
        },
        {
            "start": 819858299,
            "stop": 819858803
        },
        {
            "start": 819858806,
            "stop": 819859947
        },
        {
            "start": 819859951,
            "stop": 819859980
        },
        {
            "start": 819859983,
            "stop": 819860881
        },
        {
            "start": 819860884,
            "stop": 819861863
        }
    ]
}