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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=151",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=149",
    "results_count": 3818,
    "results_per_page": 20,
    "num_pages": 191,
    "page_number": 150,
    "results": [
        {
            "start": 858627585,
            "stop": 858643079
        },
        {
            "start": 858643283,
            "stop": 858693552
        },
        {
            "start": 858694127,
            "stop": 858715047
        },
        {
            "start": 858715357,
            "stop": 858717416
        },
        {
            "start": 858717688,
            "stop": 858724968
        },
        {
            "start": 858725316,
            "stop": 858741283
        },
        {
            "start": 858741462,
            "stop": 858777107
        },
        {
            "start": 858778422,
            "stop": 858783472
        },
        {
            "start": 858783774,
            "stop": 858784087
        },
        {
            "start": 858784156,
            "stop": 858785978
        },
        {
            "start": 858791763,
            "stop": 858792797
        },
        {
            "start": 858793740,
            "stop": 858797986
        },
        {
            "start": 858798265,
            "stop": 858799573
        },
        {
            "start": 858800050,
            "stop": 858805281
        },
        {
            "start": 858805968,
            "stop": 858806864
        },
        {
            "start": 858811192,
            "stop": 858819212
        },
        {
            "start": 858825932,
            "stop": 858885532
        },
        {
            "start": 858888373,
            "stop": 858892085
        },
        {
            "start": 858892720,
            "stop": 858961270
        },
        {
            "start": 858962252,
            "stop": 858964081
        }
    ]
}