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=2009
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=2010",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2008",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2009,
    "results": [
        {
            "start": 857743218,
            "stop": 857743247
        },
        {
            "start": 857743253,
            "stop": 857745766
        },
        {
            "start": 857745768,
            "stop": 857748438
        },
        {
            "start": 857748439,
            "stop": 857748440
        },
        {
            "start": 857748442,
            "stop": 857748445
        },
        {
            "start": 857748446,
            "stop": 857749052
        },
        {
            "start": 857749239,
            "stop": 857749775
        },
        {
            "start": 857749780,
            "stop": 857750180
        },
        {
            "start": 857750183,
            "stop": 857752101
        },
        {
            "start": 857752104,
            "stop": 857755024
        },
        {
            "start": 857755325,
            "stop": 857755485
        },
        {
            "start": 857761777,
            "stop": 857761798
        },
        {
            "start": 857761908,
            "stop": 857762451
        },
        {
            "start": 857762918,
            "stop": 857762962
        },
        {
            "start": 857762968,
            "stop": 857763145
        },
        {
            "start": 857763147,
            "stop": 857763377
        },
        {
            "start": 857763383,
            "stop": 857763630
        },
        {
            "start": 857763690,
            "stop": 857763711
        },
        {
            "start": 857763821,
            "stop": 857764030
        },
        {
            "start": 857765766,
            "stop": 857766127
        }
    ]
}