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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=5626",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=5624",
    "results_count": 119313,
    "results_per_page": 20,
    "num_pages": 5966,
    "page_number": 5625,
    "results": [
        {
            "start": 874471938,
            "stop": 874471991
        },
        {
            "start": 874471994,
            "stop": 874472500
        },
        {
            "start": 874472503,
            "stop": 874472518
        },
        {
            "start": 874472521,
            "stop": 874472540
        },
        {
            "start": 874472543,
            "stop": 874472568
        },
        {
            "start": 874472571,
            "stop": 874472580
        },
        {
            "start": 874472583,
            "stop": 874472707
        },
        {
            "start": 874472710,
            "stop": 874472712
        },
        {
            "start": 874472718,
            "stop": 874472858
        },
        {
            "start": 874472861,
            "stop": 874473422
        },
        {
            "start": 874473428,
            "stop": 874473618
        },
        {
            "start": 874473621,
            "stop": 874473694
        },
        {
            "start": 874473697,
            "stop": 874473861
        },
        {
            "start": 874473864,
            "stop": 874473992
        },
        {
            "start": 874473995,
            "stop": 874474182
        },
        {
            "start": 874474185,
            "stop": 874474324
        },
        {
            "start": 874474327,
            "stop": 874474616
        },
        {
            "start": 874474619,
            "stop": 874475120
        },
        {
            "start": 874475123,
            "stop": 874475164
        },
        {
            "start": 874475167,
            "stop": 874475631
        }
    ]
}