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_CBCHIGH_CAT3/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/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=110",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 111,
    "results": [
        {
            "start": 816939116,
            "stop": 816939186
        },
        {
            "start": 816939270,
            "stop": 816939293
        },
        {
            "start": 816939314,
            "stop": 816939358
        },
        {
            "start": 816939387,
            "stop": 816939452
        },
        {
            "start": 816939486,
            "stop": 816939517
        },
        {
            "start": 816939561,
            "stop": 816939615
        },
        {
            "start": 816939636,
            "stop": 816939735
        },
        {
            "start": 816939802,
            "stop": 816939823
        },
        {
            "start": 816939852,
            "stop": 816939899
        },
        {
            "start": 816940035,
            "stop": 816940050
        },
        {
            "start": 816940070,
            "stop": 816940091
        },
        {
            "start": 816940135,
            "stop": 816940138
        },
        {
            "start": 816940158,
            "stop": 816940168
        },
        {
            "start": 816940202,
            "stop": 816940208
        },
        {
            "start": 816940232,
            "stop": 816940245
        },
        {
            "start": 816940394,
            "stop": 816940395
        },
        {
            "start": 816940415,
            "stop": 816940453
        },
        {
            "start": 816940474,
            "stop": 816940492
        },
        {
            "start": 816940555,
            "stop": 816940558
        },
        {
            "start": 816940646,
            "stop": 816940686
        }
    ]
}