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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2/segments?format=api&page=366",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2/segments?format=api&page=364",
    "results_count": 11686,
    "results_per_page": 20,
    "num_pages": 585,
    "page_number": 365,
    "results": [
        {
            "start": 857395955,
            "stop": 857402091
        },
        {
            "start": 857403321,
            "stop": 857403695
        },
        {
            "start": 857403697,
            "stop": 857404545
        },
        {
            "start": 857404547,
            "stop": 857404796
        },
        {
            "start": 857404798,
            "stop": 857404799
        },
        {
            "start": 857404800,
            "stop": 857404847
        },
        {
            "start": 857404848,
            "stop": 857406307
        },
        {
            "start": 857406310,
            "stop": 857406403
        },
        {
            "start": 857410503,
            "stop": 857410982
        },
        {
            "start": 857410988,
            "stop": 857411130
        },
        {
            "start": 857411240,
            "stop": 857411415
        },
        {
            "start": 857412000,
            "stop": 857412477
        },
        {
            "start": 857423453,
            "stop": 857423635
        },
        {
            "start": 857423935,
            "stop": 857424026
        },
        {
            "start": 857424748,
            "stop": 857424801
        },
        {
            "start": 857424911,
            "stop": 857425949
        },
        {
            "start": 857426249,
            "stop": 857426586
        },
        {
            "start": 857426696,
            "stop": 857426863
        },
        {
            "start": 857427569,
            "stop": 857427648
        },
        {
            "start": 857427948,
            "stop": 857428082
        }
    ]
}