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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=125",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=123",
    "results_count": 5354,
    "results_per_page": 20,
    "num_pages": 268,
    "page_number": 124,
    "results": [
        {
            "start": 832807908,
            "stop": 832808298
        },
        {
            "start": 832808698,
            "stop": 832812537
        },
        {
            "start": 832813184,
            "stop": 832813600
        },
        {
            "start": 832814247,
            "stop": 832821912
        },
        {
            "start": 832824372,
            "stop": 832824873
        },
        {
            "start": 832825273,
            "stop": 832837241
        },
        {
            "start": 832837561,
            "stop": 832837805
        },
        {
            "start": 832838205,
            "stop": 832853010
        },
        {
            "start": 832855777,
            "stop": 832858401
        },
        {
            "start": 832859352,
            "stop": 832860478
        },
        {
            "start": 832861690,
            "stop": 832865473
        },
        {
            "start": 832866437,
            "stop": 832882587
        },
        {
            "start": 832883900,
            "stop": 832923567
        },
        {
            "start": 832923887,
            "stop": 832923935
        },
        {
            "start": 832924335,
            "stop": 832925876
        },
        {
            "start": 832926459,
            "stop": 832939982
        },
        {
            "start": 832943096,
            "stop": 832950545
        },
        {
            "start": 832950945,
            "stop": 832950990
        },
        {
            "start": 832951393,
            "stop": 832953045
        },
        {
            "start": 832953703,
            "stop": 832954132
        }
    ]
}