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=10002
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=10003",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10001",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10002,
    "results": [
        {
            "start": 872225080,
            "stop": 872225222
        },
        {
            "start": 872225272,
            "stop": 872225405
        },
        {
            "start": 872225441,
            "stop": 872225603
        },
        {
            "start": 872225639,
            "stop": 872225746
        },
        {
            "start": 872225782,
            "stop": 872225838
        },
        {
            "start": 872225883,
            "stop": 872225895
        },
        {
            "start": 872225937,
            "stop": 872226039
        },
        {
            "start": 872226075,
            "stop": 872226549
        },
        {
            "start": 872226593,
            "stop": 872226654
        },
        {
            "start": 872226695,
            "stop": 872226813
        },
        {
            "start": 872226853,
            "stop": 872226929
        },
        {
            "start": 872226986,
            "stop": 872226998
        },
        {
            "start": 872227067,
            "stop": 872227194
        },
        {
            "start": 872227236,
            "stop": 872227300
        },
        {
            "start": 872227418,
            "stop": 872227482
        },
        {
            "start": 872227518,
            "stop": 872227543
        },
        {
            "start": 872227579,
            "stop": 872227583
        },
        {
            "start": 872227619,
            "stop": 872227736
        },
        {
            "start": 872227773,
            "stop": 872227787
        },
        {
            "start": 872227826,
            "stop": 872227939
        }
    ]
}