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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=322",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=320",
    "results_count": 8301,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 321,
    "results": [
        {
            "start": 1181752921,
            "stop": 1181752931
        },
        {
            "start": 1181752933,
            "stop": 1181752934
        },
        {
            "start": 1181752937,
            "stop": 1181753220
        },
        {
            "start": 1181753221,
            "stop": 1181754128
        },
        {
            "start": 1181754129,
            "stop": 1181754168
        },
        {
            "start": 1181754169,
            "stop": 1181754367
        },
        {
            "start": 1181754368,
            "stop": 1181755048
        },
        {
            "start": 1181755050,
            "stop": 1181756321
        },
        {
            "start": 1181756324,
            "stop": 1181756661
        },
        {
            "start": 1181756662,
            "stop": 1181756666
        },
        {
            "start": 1181756667,
            "stop": 1181757058
        },
        {
            "start": 1181757059,
            "stop": 1181757749
        },
        {
            "start": 1181757750,
            "stop": 1181758179
        },
        {
            "start": 1181758181,
            "stop": 1181758926
        },
        {
            "start": 1181758927,
            "stop": 1181759234
        },
        {
            "start": 1181759235,
            "stop": 1181759343
        },
        {
            "start": 1181759344,
            "stop": 1181759496
        },
        {
            "start": 1181759497,
            "stop": 1181759648
        },
        {
            "start": 1181759649,
            "stop": 1181759653
        },
        {
            "start": 1181759656,
            "stop": 1181759680
        }
    ]
}