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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_BURST_CAT3/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_BURST_CAT3/segments?format=api&page=98",
    "results_count": 11548,
    "results_per_page": 20,
    "num_pages": 578,
    "page_number": 99,
    "results": [
        {
            "start": 1174949081,
            "stop": 1174949400
        },
        {
            "start": 1174949410,
            "stop": 1174973242
        },
        {
            "start": 1174973246,
            "stop": 1174975182
        },
        {
            "start": 1174975186,
            "stop": 1174990824
        },
        {
            "start": 1174990828,
            "stop": 1174991090
        },
        {
            "start": 1174991564,
            "stop": 1174993902
        },
        {
            "start": 1174993906,
            "stop": 1175000777
        },
        {
            "start": 1175000781,
            "stop": 1175007292
        },
        {
            "start": 1175007295,
            "stop": 1175008065
        },
        {
            "start": 1175008068,
            "stop": 1175011050
        },
        {
            "start": 1175011080,
            "stop": 1175011090
        },
        {
            "start": 1175011120,
            "stop": 1175011140
        },
        {
            "start": 1175011180,
            "stop": 1175012141
        },
        {
            "start": 1175012144,
            "stop": 1175012178
        },
        {
            "start": 1175012181,
            "stop": 1175012314
        },
        {
            "start": 1175012317,
            "stop": 1175012374
        },
        {
            "start": 1175012377,
            "stop": 1175012720
        },
        {
            "start": 1175012740,
            "stop": 1175012770
        },
        {
            "start": 1175012800,
            "stop": 1175012850
        },
        {
            "start": 1175012860,
            "stop": 1175015100
        }
    ]
}