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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT1/segments?format=api&page=125",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT1/segments?format=api&page=123",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 124,
    "results": [
        {
            "start": 837377769,
            "stop": 837380200
        },
        {
            "start": 837380411,
            "stop": 837380867
        },
        {
            "start": 837384368,
            "stop": 837390110
        },
        {
            "start": 837390182,
            "stop": 837392645
        },
        {
            "start": 837393502,
            "stop": 837400615
        },
        {
            "start": 837400783,
            "stop": 837402666
        },
        {
            "start": 837404489,
            "stop": 837416600
        },
        {
            "start": 837417818,
            "stop": 837431872
        },
        {
            "start": 837432115,
            "stop": 837432474
        },
        {
            "start": 837433244,
            "stop": 837434595
        },
        {
            "start": 837435096,
            "stop": 837435312
        },
        {
            "start": 837437027,
            "stop": 837437513
        },
        {
            "start": 837437628,
            "stop": 837438478
        },
        {
            "start": 837438541,
            "stop": 837439330
        },
        {
            "start": 837441308,
            "stop": 837443628
        },
        {
            "start": 837447491,
            "stop": 837451019
        },
        {
            "start": 837451379,
            "stop": 837452318
        },
        {
            "start": 837452997,
            "stop": 837454641
        },
        {
            "start": 837454853,
            "stop": 837458599
        },
        {
            "start": 837458707,
            "stop": 837461030
        }
    ]
}