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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2013",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2011",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2012,
    "results": [
        {
            "start": 857924870,
            "stop": 857927503
        },
        {
            "start": 857927517,
            "stop": 857927524
        },
        {
            "start": 857927528,
            "stop": 857932470
        },
        {
            "start": 857932616,
            "stop": 857932954
        },
        {
            "start": 857933409,
            "stop": 857933847
        },
        {
            "start": 857933853,
            "stop": 857935270
        },
        {
            "start": 857935275,
            "stop": 857935290
        },
        {
            "start": 857935295,
            "stop": 857940937
        },
        {
            "start": 857941047,
            "stop": 857941300
        },
        {
            "start": 857941305,
            "stop": 857942341
        },
        {
            "start": 857942472,
            "stop": 857943880
        },
        {
            "start": 857944283,
            "stop": 857944692
        },
        {
            "start": 857944992,
            "stop": 857945252
        },
        {
            "start": 857945813,
            "stop": 857946460
        },
        {
            "start": 857946570,
            "stop": 857946585
        },
        {
            "start": 857947152,
            "stop": 857947691
        },
        {
            "start": 857948109,
            "stop": 857949058
        },
        {
            "start": 857949168,
            "stop": 857949170
        },
        {
            "start": 857950894,
            "stop": 857957587
        },
        {
            "start": 857957598,
            "stop": 857957610
        }
    ]
}