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_CAT4/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/L1_CBCHIGH_CAT4/segments?format=api&page=65",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=63",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 64,
    "results": [
        {
            "start": 816684095,
            "stop": 816684201
        },
        {
            "start": 816684220,
            "stop": 816684528
        },
        {
            "start": 816684548,
            "stop": 816684740
        },
        {
            "start": 816684760,
            "stop": 816684855
        },
        {
            "start": 816684858,
            "stop": 816685002
        },
        {
            "start": 816685021,
            "stop": 816685064
        },
        {
            "start": 816685069,
            "stop": 816685212
        },
        {
            "start": 816685232,
            "stop": 816685264
        },
        {
            "start": 816685284,
            "stop": 816685321
        },
        {
            "start": 816685343,
            "stop": 816685345
        },
        {
            "start": 816685364,
            "stop": 816685637
        },
        {
            "start": 816685640,
            "stop": 816685664
        },
        {
            "start": 816685667,
            "stop": 816685733
        },
        {
            "start": 816685753,
            "stop": 816685761
        },
        {
            "start": 816685781,
            "stop": 816685820
        },
        {
            "start": 816685857,
            "stop": 816685882
        },
        {
            "start": 816685901,
            "stop": 816686119
        },
        {
            "start": 816686140,
            "stop": 816686188
        },
        {
            "start": 816686192,
            "stop": 816686200
        },
        {
            "start": 816686229,
            "stop": 816686239
        }
    ]
}