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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=334",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=332",
    "results_count": 146533,
    "results_per_page": 20,
    "num_pages": 7327,
    "page_number": 333,
    "results": [
        {
            "start": 847711897,
            "stop": 847711918
        },
        {
            "start": 847711919,
            "stop": 847711938
        },
        {
            "start": 847711939,
            "stop": 847712004
        },
        {
            "start": 847712005,
            "stop": 847712023
        },
        {
            "start": 847712025,
            "stop": 847712066
        },
        {
            "start": 847712068,
            "stop": 847712088
        },
        {
            "start": 847712089,
            "stop": 847712109
        },
        {
            "start": 847712110,
            "stop": 847712131
        },
        {
            "start": 847712132,
            "stop": 847712151
        },
        {
            "start": 847712152,
            "stop": 847712173
        },
        {
            "start": 847712174,
            "stop": 847712196
        },
        {
            "start": 847712199,
            "stop": 847712216
        },
        {
            "start": 847712217,
            "stop": 847712238
        },
        {
            "start": 847712240,
            "stop": 847712258
        },
        {
            "start": 847712259,
            "stop": 847712279
        },
        {
            "start": 847712280,
            "stop": 847712300
        },
        {
            "start": 847712302,
            "stop": 847712322
        },
        {
            "start": 847712324,
            "stop": 847712344
        },
        {
            "start": 847712346,
            "stop": 847712349
        },
        {
            "start": 847712351,
            "stop": 847712364
        }
    ]
}