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=64
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=65",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=63",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 64,
    "results": [
        {
            "start": 856122585,
            "stop": 856122720
        },
        {
            "start": 856169936,
            "stop": 856170080
        },
        {
            "start": 856186729,
            "stop": 856186873
        },
        {
            "start": 856197008,
            "stop": 856197152
        },
        {
            "start": 856214377,
            "stop": 856214577
        },
        {
            "start": 856244497,
            "stop": 856244633
        },
        {
            "start": 856253361,
            "stop": 856253569
        },
        {
            "start": 856261864,
            "stop": 856262008
        },
        {
            "start": 856317504,
            "stop": 856317640
        },
        {
            "start": 856338841,
            "stop": 856338985
        },
        {
            "start": 856418689,
            "stop": 856418816
        },
        {
            "start": 856432977,
            "stop": 856433113
        },
        {
            "start": 856446609,
            "stop": 856446737
        },
        {
            "start": 856457489,
            "stop": 856457617
        },
        {
            "start": 856500168,
            "stop": 856500384
        },
        {
            "start": 856539801,
            "stop": 856539936
        },
        {
            "start": 856546449,
            "stop": 856546593
        },
        {
            "start": 856558864,
            "stop": 856558992
        },
        {
            "start": 856584640,
            "stop": 856584784
        },
        {
            "start": 856603833,
            "stop": 856603977
        }
    ]
}