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=111
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=112",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=110",
    "results_count": 3094,
    "results_per_page": 20,
    "num_pages": 155,
    "page_number": 111,
    "results": [
        {
            "start": 960298815,
            "stop": 960310399
        },
        {
            "start": 960330275,
            "stop": 960332449
        },
        {
            "start": 960332672,
            "stop": 960335306
        },
        {
            "start": 960338745,
            "stop": 960348267
        },
        {
            "start": 960349683,
            "stop": 960352484
        },
        {
            "start": 960421280,
            "stop": 960421286
        },
        {
            "start": 960421495,
            "stop": 960424783
        },
        {
            "start": 960424802,
            "stop": 960433210
        },
        {
            "start": 960520245,
            "stop": 960531478
        },
        {
            "start": 960533781,
            "stop": 960550971
        },
        {
            "start": 960556429,
            "stop": 960556626
        },
        {
            "start": 960556660,
            "stop": 960557086
        },
        {
            "start": 960627018,
            "stop": 960627666
        },
        {
            "start": 960628447,
            "stop": 960629069
        },
        {
            "start": 960630408,
            "stop": 960631867
        },
        {
            "start": 960632797,
            "stop": 960633298
        },
        {
            "start": 960634651,
            "stop": 960635967
        },
        {
            "start": 960638530,
            "stop": 960638860
        },
        {
            "start": 960707944,
            "stop": 960710254
        },
        {
            "start": 960711269,
            "stop": 960728613
        }
    ]
}