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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=31",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=29",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 30,
    "results": [
        {
            "start": 1369702082,
            "stop": 1369703504
        },
        {
            "start": 1369703930,
            "stop": 1369704833
        },
        {
            "start": 1369704835,
            "stop": 1369705808
        },
        {
            "start": 1369705812,
            "stop": 1369707212
        },
        {
            "start": 1369707214,
            "stop": 1369709349
        },
        {
            "start": 1369709351,
            "stop": 1369711607
        },
        {
            "start": 1369711608,
            "stop": 1369713839
        },
        {
            "start": 1369713841,
            "stop": 1369715879
        },
        {
            "start": 1369715880,
            "stop": 1369716203
        },
        {
            "start": 1369716205,
            "stop": 1369717763
        },
        {
            "start": 1369717765,
            "stop": 1369718010
        },
        {
            "start": 1369718012,
            "stop": 1369719457
        },
        {
            "start": 1369719462,
            "stop": 1369719881
        },
        {
            "start": 1369719886,
            "stop": 1369719937
        },
        {
            "start": 1369719938,
            "stop": 1369719992
        },
        {
            "start": 1369719994,
            "stop": 1369721142
        },
        {
            "start": 1369721144,
            "stop": 1369722656
        },
        {
            "start": 1369722658,
            "stop": 1369724638
        },
        {
            "start": 1369724639,
            "stop": 1369725756
        },
        {
            "start": 1369725758,
            "stop": 1369725926
        }
    ]
}