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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=223",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=221",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 222,
    "results": [
        {
            "start": 845708068,
            "stop": 845732113
        },
        {
            "start": 845732155,
            "stop": 845732156
        },
        {
            "start": 845732250,
            "stop": 845732301
        },
        {
            "start": 845733394,
            "stop": 845733773
        },
        {
            "start": 845767872,
            "stop": 845777990
        },
        {
            "start": 845778028,
            "stop": 845778030
        },
        {
            "start": 845778102,
            "stop": 845795533
        },
        {
            "start": 845795534,
            "stop": 845795535
        },
        {
            "start": 845796480,
            "stop": 845798893
        },
        {
            "start": 845798932,
            "stop": 845798933
        },
        {
            "start": 845799805,
            "stop": 845809086
        },
        {
            "start": 845811056,
            "stop": 845817253
        },
        {
            "start": 845818529,
            "stop": 845818849
        },
        {
            "start": 845853276,
            "stop": 845860753
        },
        {
            "start": 845863044,
            "stop": 845866901
        },
        {
            "start": 845866948,
            "stop": 845870097
        },
        {
            "start": 845870341,
            "stop": 845882413
        },
        {
            "start": 845882430,
            "stop": 845882431
        },
        {
            "start": 845883615,
            "stop": 845886433
        },
        {
            "start": 845886465,
            "stop": 845886467
        }
    ]
}