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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3E/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3E/segments?format=api&page=255",
    "results_count": 822197,
    "results_per_page": 20,
    "num_pages": 41110,
    "page_number": 256,
    "results": [
        {
            "start": 821870659,
            "stop": 821872730
        },
        {
            "start": 821875260,
            "stop": 821875413
        },
        {
            "start": 821875417,
            "stop": 821876445
        },
        {
            "start": 821876448,
            "stop": 821883253
        },
        {
            "start": 821883300,
            "stop": 821883301
        },
        {
            "start": 821883539,
            "stop": 821886966
        },
        {
            "start": 821886970,
            "stop": 821891962
        },
        {
            "start": 821891965,
            "stop": 821906353
        },
        {
            "start": 821906707,
            "stop": 821909385
        },
        {
            "start": 821910889,
            "stop": 821911933
        },
        {
            "start": 821912080,
            "stop": 821915015
        },
        {
            "start": 821916305,
            "stop": 821923784
        },
        {
            "start": 821923965,
            "stop": 821935134
        },
        {
            "start": 821935138,
            "stop": 821969188
        },
        {
            "start": 821970104,
            "stop": 821975329
        },
        {
            "start": 821975333,
            "stop": 821977484
        },
        {
            "start": 821977665,
            "stop": 821983080
        },
        {
            "start": 821983140,
            "stop": 821990409
        },
        {
            "start": 821991937,
            "stop": 821992693
        },
        {
            "start": 821993087,
            "stop": 822003275
        }
    ]
}