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=51
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=52",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=50",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 51,
    "results": [
        {
            "start": 822386072,
            "stop": 822386418
        },
        {
            "start": 822386718,
            "stop": 822393025
        },
        {
            "start": 822393778,
            "stop": 822393856
        },
        {
            "start": 822397076,
            "stop": 822401984
        },
        {
            "start": 822402216,
            "stop": 822411715
        },
        {
            "start": 822411823,
            "stop": 822412181
        },
        {
            "start": 822412276,
            "stop": 822412342
        },
        {
            "start": 822412534,
            "stop": 822413179
        },
        {
            "start": 822413593,
            "stop": 822416167
        },
        {
            "start": 822416230,
            "stop": 822416895
        },
        {
            "start": 822424979,
            "stop": 822425003
        },
        {
            "start": 822425058,
            "stop": 822425079
        },
        {
            "start": 822431340,
            "stop": 822433590
        },
        {
            "start": 822433784,
            "stop": 822434602
        },
        {
            "start": 822434812,
            "stop": 822435556
        },
        {
            "start": 822437391,
            "stop": 822438538
        },
        {
            "start": 822438603,
            "stop": 822443205
        },
        {
            "start": 822443266,
            "stop": 822446750
        },
        {
            "start": 822446850,
            "stop": 822446861
        },
        {
            "start": 822446930,
            "stop": 822447064
        }
    ]
}