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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=51",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=49",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 50,
    "results": [
        {
            "start": 847918458,
            "stop": 847918587
        },
        {
            "start": 847962132,
            "stop": 847962261
        },
        {
            "start": 847981907,
            "stop": 847982051
        },
        {
            "start": 847989356,
            "stop": 847989483
        },
        {
            "start": 847994974,
            "stop": 847995101
        },
        {
            "start": 848008172,
            "stop": 848008316
        },
        {
            "start": 848030396,
            "stop": 848030524
        },
        {
            "start": 848053748,
            "stop": 848053875
        },
        {
            "start": 848080524,
            "stop": 848080651
        },
        {
            "start": 848089781,
            "stop": 848089916
        },
        {
            "start": 848137188,
            "stop": 848137331
        },
        {
            "start": 848147364,
            "stop": 848147492
        },
        {
            "start": 848205501,
            "stop": 848205636
        },
        {
            "start": 848211612,
            "stop": 848211748
        },
        {
            "start": 848228364,
            "stop": 848228507
        },
        {
            "start": 848238596,
            "stop": 848238741
        },
        {
            "start": 848291388,
            "stop": 848291532
        },
        {
            "start": 848305155,
            "stop": 848305371
        },
        {
            "start": 848313212,
            "stop": 848313347
        },
        {
            "start": 848385228,
            "stop": 848385364
        }
    ]
}