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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=205",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=203",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 204,
    "results": [
        {
            "start": 851614528,
            "stop": 851618921
        },
        {
            "start": 851619029,
            "stop": 851619166
        },
        {
            "start": 851619292,
            "stop": 851644566
        },
        {
            "start": 851646794,
            "stop": 851658731
        },
        {
            "start": 851658822,
            "stop": 851658982
        },
        {
            "start": 851661674,
            "stop": 851661694
        },
        {
            "start": 851661733,
            "stop": 851664866
        },
        {
            "start": 851665104,
            "stop": 851670288
        },
        {
            "start": 851670354,
            "stop": 851686945
        },
        {
            "start": 851687791,
            "stop": 851767021
        },
        {
            "start": 851768488,
            "stop": 851770944
        },
        {
            "start": 851772613,
            "stop": 851773813
        },
        {
            "start": 851773920,
            "stop": 851783491
        },
        {
            "start": 851784222,
            "stop": 851787007
        },
        {
            "start": 851788212,
            "stop": 851789979
        },
        {
            "start": 851798813,
            "stop": 851800755
        },
        {
            "start": 851800854,
            "stop": 851811850
        },
        {
            "start": 851811925,
            "stop": 851814444
        },
        {
            "start": 851814558,
            "stop": 851845076
        },
        {
            "start": 851845931,
            "stop": 851857975
        }
    ]
}