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=300
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=301",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3E/segments?format=api&page=299",
    "results_count": 822197,
    "results_per_page": 20,
    "num_pages": 41110,
    "page_number": 300,
    "results": [
        {
            "start": 822815950,
            "stop": 822815980
        },
        {
            "start": 822822257,
            "stop": 822822295
        },
        {
            "start": 822822298,
            "stop": 822822313
        },
        {
            "start": 822822393,
            "stop": 822822428
        },
        {
            "start": 822822432,
            "stop": 822822438
        },
        {
            "start": 822822442,
            "stop": 822822447
        },
        {
            "start": 822822456,
            "stop": 822822460
        },
        {
            "start": 822822470,
            "stop": 822822481
        },
        {
            "start": 822822513,
            "stop": 822822519
        },
        {
            "start": 822822523,
            "stop": 822822535
        },
        {
            "start": 822822538,
            "stop": 822822563
        },
        {
            "start": 822822566,
            "stop": 822822572
        },
        {
            "start": 822822577,
            "stop": 822822582
        },
        {
            "start": 822822586,
            "stop": 822822599
        },
        {
            "start": 822822603,
            "stop": 822822625
        },
        {
            "start": 822822677,
            "stop": 822822699
        },
        {
            "start": 822822796,
            "stop": 822822842
        },
        {
            "start": 822822845,
            "stop": 822822851
        },
        {
            "start": 822822998,
            "stop": 822823000
        },
        {
            "start": 822823152,
            "stop": 822823177
        }
    ]
}