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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_DATA/segments?format=api&page=9",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_DATA/segments?format=api&page=7",
    "results_count": 568,
    "results_per_page": 20,
    "num_pages": 29,
    "page_number": 8,
    "results": [
        {
            "start": 1373583056,
            "stop": 1373598992
        },
        {
            "start": 1373612823,
            "stop": 1373645472
        },
        {
            "start": 1373649062,
            "stop": 1373666600
        },
        {
            "start": 1373673717,
            "stop": 1373710713
        },
        {
            "start": 1373753223,
            "stop": 1373753788
        },
        {
            "start": 1373753814,
            "stop": 1373753822
        },
        {
            "start": 1373753828,
            "stop": 1373756009
        },
        {
            "start": 1373759328,
            "stop": 1373761596
        },
        {
            "start": 1373774134,
            "stop": 1373794752
        },
        {
            "start": 1373796997,
            "stop": 1373806682
        },
        {
            "start": 1373811481,
            "stop": 1373812019
        },
        {
            "start": 1373813450,
            "stop": 1373829056
        },
        {
            "start": 1373843681,
            "stop": 1373886052
        },
        {
            "start": 1373895167,
            "stop": 1373895229
        },
        {
            "start": 1373897902,
            "stop": 1373897963
        },
        {
            "start": 1373902450,
            "stop": 1373902664
        },
        {
            "start": 1373923815,
            "stop": 1373971723
        },
        {
            "start": 1374012149,
            "stop": 1374012342
        },
        {
            "start": 1374012413,
            "stop": 1374096942
        },
        {
            "start": 1374097221,
            "stop": 1374098663
        }
    ]
}