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=3145
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=3146",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3144",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 3145,
    "results": [
        {
            "start": 868881645,
            "stop": 868882260
        },
        {
            "start": 868882323,
            "stop": 868883647
        },
        {
            "start": 868883650,
            "stop": 868886572
        },
        {
            "start": 868886576,
            "stop": 868887977
        },
        {
            "start": 868887983,
            "stop": 868887990
        },
        {
            "start": 868887995,
            "stop": 868888010
        },
        {
            "start": 868888015,
            "stop": 868891602
        },
        {
            "start": 868891608,
            "stop": 868891620
        },
        {
            "start": 868891740,
            "stop": 868893060
        },
        {
            "start": 868893180,
            "stop": 868894440
        },
        {
            "start": 868894500,
            "stop": 868896977
        },
        {
            "start": 868897091,
            "stop": 868898664
        },
        {
            "start": 868898668,
            "stop": 868898880
        },
        {
            "start": 868898940,
            "stop": 868899780
        },
        {
            "start": 868899960,
            "stop": 868900380
        },
        {
            "start": 868900440,
            "stop": 868900620
        },
        {
            "start": 868900680,
            "stop": 868900800
        },
        {
            "start": 868900860,
            "stop": 868901220
        },
        {
            "start": 868901280,
            "stop": 868902600
        },
        {
            "start": 868902780,
            "stop": 868902900
        }
    ]
}