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=40
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=41",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=39",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 40,
    "results": [
        {
            "start": 820989628,
            "stop": 820990919
        },
        {
            "start": 820991219,
            "stop": 820993809
        },
        {
            "start": 820995490,
            "stop": 820995766
        },
        {
            "start": 820997694,
            "stop": 820997816
        },
        {
            "start": 820998216,
            "stop": 820998385
        },
        {
            "start": 821025824,
            "stop": 821027278
        },
        {
            "start": 821027406,
            "stop": 821027429
        },
        {
            "start": 821027430,
            "stop": 821027431
        },
        {
            "start": 821032285,
            "stop": 821034554
        },
        {
            "start": 821034556,
            "stop": 821034558
        },
        {
            "start": 821037156,
            "stop": 821037384
        },
        {
            "start": 821037497,
            "stop": 821037574
        },
        {
            "start": 821037841,
            "stop": 821037904
        },
        {
            "start": 821052036,
            "stop": 821052932
        },
        {
            "start": 821053056,
            "stop": 821053103
        },
        {
            "start": 821055275,
            "stop": 821055763
        },
        {
            "start": 821055864,
            "stop": 821055871
        },
        {
            "start": 821056143,
            "stop": 821056324
        },
        {
            "start": 821062149,
            "stop": 821062808
        },
        {
            "start": 821063136,
            "stop": 821063287
        }
    ]
}