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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=401",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=399",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 400,
    "results": [
        {
            "start": 851686709,
            "stop": 851686915
        },
        {
            "start": 851687791,
            "stop": 851708957
        },
        {
            "start": 851708959,
            "stop": 851732819
        },
        {
            "start": 851732821,
            "stop": 851759880
        },
        {
            "start": 851759881,
            "stop": 851766912
        },
        {
            "start": 851766914,
            "stop": 851766991
        },
        {
            "start": 851768488,
            "stop": 851770914
        },
        {
            "start": 851772613,
            "stop": 851773813
        },
        {
            "start": 851773920,
            "stop": 851783491
        },
        {
            "start": 851784222,
            "stop": 851786977
        },
        {
            "start": 851788212,
            "stop": 851789949
        },
        {
            "start": 851798813,
            "stop": 851800755
        },
        {
            "start": 851800854,
            "stop": 851811850
        },
        {
            "start": 851811925,
            "stop": 851814444
        },
        {
            "start": 851814558,
            "stop": 851845076
        },
        {
            "start": 851845931,
            "stop": 851857975
        },
        {
            "start": 851858066,
            "stop": 851860425
        },
        {
            "start": 851860618,
            "stop": 851861745
        },
        {
            "start": 851863604,
            "stop": 851868278
        },
        {
            "start": 851869225,
            "stop": 851871563
        }
    ]
}