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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=81",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=79",
    "results_count": 3094,
    "results_per_page": 20,
    "num_pages": 155,
    "page_number": 80,
    "results": [
        {
            "start": 951784957,
            "stop": 951787748
        },
        {
            "start": 951788071,
            "stop": 951790456
        },
        {
            "start": 951791764,
            "stop": 951791942
        },
        {
            "start": 951794784,
            "stop": 951800409
        },
        {
            "start": 951800590,
            "stop": 951817101
        },
        {
            "start": 951824431,
            "stop": 951825717
        },
        {
            "start": 951850348,
            "stop": 951855503
        },
        {
            "start": 951857175,
            "stop": 951860809
        },
        {
            "start": 951861084,
            "stop": 951874285
        },
        {
            "start": 951874429,
            "stop": 951874469
        },
        {
            "start": 951874634,
            "stop": 951877602
        },
        {
            "start": 951877931,
            "stop": 951887398
        },
        {
            "start": 951890691,
            "stop": 951920753
        },
        {
            "start": 951926885,
            "stop": 951931234
        },
        {
            "start": 951953062,
            "stop": 951954524
        },
        {
            "start": 951955722,
            "stop": 951957257
        },
        {
            "start": 951959638,
            "stop": 951963126
        },
        {
            "start": 951963321,
            "stop": 951971832
        },
        {
            "start": 951972148,
            "stop": 951978857
        },
        {
            "start": 951985150,
            "stop": 951989011
        }
    ]
}