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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=100",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 101,
    "results": [
        {
            "start": 816685831,
            "stop": 816685844
        },
        {
            "start": 816685849,
            "stop": 816685889
        },
        {
            "start": 816685918,
            "stop": 816686124
        },
        {
            "start": 816686157,
            "stop": 816686186
        },
        {
            "start": 816686194,
            "stop": 816686208
        },
        {
            "start": 816686212,
            "stop": 816686217
        },
        {
            "start": 816686246,
            "stop": 816686247
        },
        {
            "start": 816686251,
            "stop": 816686329
        },
        {
            "start": 816686376,
            "stop": 816686546
        },
        {
            "start": 816686575,
            "stop": 816686742
        },
        {
            "start": 816686745,
            "stop": 816686770
        },
        {
            "start": 816686799,
            "stop": 816686909
        },
        {
            "start": 816686915,
            "stop": 816687005
        },
        {
            "start": 816687014,
            "stop": 816687089
        },
        {
            "start": 816687094,
            "stop": 816687109
        },
        {
            "start": 816687117,
            "stop": 816687149
        },
        {
            "start": 816687183,
            "stop": 816687219
        },
        {
            "start": 816687227,
            "stop": 816687486
        },
        {
            "start": 816687490,
            "stop": 816687631
        },
        {
            "start": 816687634,
            "stop": 816687748
        }
    ]
}