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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=122",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 123,
    "results": [
        {
            "start": 1372375394,
            "stop": 1372376830
        },
        {
            "start": 1372376831,
            "stop": 1372377600
        },
        {
            "start": 1372377601,
            "stop": 1372377822
        },
        {
            "start": 1372377824,
            "stop": 1372379866
        },
        {
            "start": 1372379867,
            "stop": 1372381080
        },
        {
            "start": 1372381082,
            "stop": 1372381281
        },
        {
            "start": 1372381283,
            "stop": 1372383983
        },
        {
            "start": 1372383984,
            "stop": 1372384174
        },
        {
            "start": 1372384176,
            "stop": 1372386053
        },
        {
            "start": 1372386058,
            "stop": 1372390668
        },
        {
            "start": 1372390670,
            "stop": 1372390831
        },
        {
            "start": 1372390833,
            "stop": 1372392107
        },
        {
            "start": 1372392108,
            "stop": 1372395982
        },
        {
            "start": 1372395987,
            "stop": 1372398041
        },
        {
            "start": 1372398042,
            "stop": 1372400349
        },
        {
            "start": 1372400351,
            "stop": 1372402299
        },
        {
            "start": 1372402301,
            "stop": 1372404237
        },
        {
            "start": 1372404239,
            "stop": 1372405850
        },
        {
            "start": 1372405854,
            "stop": 1372406479
        },
        {
            "start": 1372406481,
            "stop": 1372408679
        }
    ]
}