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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=46",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=44",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 45,
    "results": [
        {
            "start": 821650135,
            "stop": 821653445
        },
        {
            "start": 821654121,
            "stop": 821654129
        },
        {
            "start": 821654148,
            "stop": 821657286
        },
        {
            "start": 821657287,
            "stop": 821659661
        },
        {
            "start": 821660538,
            "stop": 821663968
        },
        {
            "start": 821665575,
            "stop": 821666930
        },
        {
            "start": 821667073,
            "stop": 821681661
        },
        {
            "start": 821682347,
            "stop": 821684623
        },
        {
            "start": 821685363,
            "stop": 821691073
        },
        {
            "start": 821691562,
            "stop": 821718648
        },
        {
            "start": 821720082,
            "stop": 821720786
        },
        {
            "start": 821722673,
            "stop": 821725793
        },
        {
            "start": 821728718,
            "stop": 821738147
        },
        {
            "start": 821739681,
            "stop": 821742782
        },
        {
            "start": 821744967,
            "stop": 821746957
        },
        {
            "start": 821747711,
            "stop": 821754826
        },
        {
            "start": 821754963,
            "stop": 821756512
        },
        {
            "start": 821756768,
            "stop": 821781369
        },
        {
            "start": 821784676,
            "stop": 821785155
        },
        {
            "start": 821785971,
            "stop": 821786653
        }
    ]
}