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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=111",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=109",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 110,
    "results": [
        {
            "start": 830778962,
            "stop": 830800704
        },
        {
            "start": 830801863,
            "stop": 830811155
        },
        {
            "start": 830812670,
            "stop": 830815424
        },
        {
            "start": 830816366,
            "stop": 830816480
        },
        {
            "start": 830816535,
            "stop": 830826073
        },
        {
            "start": 830826567,
            "stop": 830827494
        },
        {
            "start": 830827496,
            "stop": 830827824
        },
        {
            "start": 830830172,
            "stop": 830833494
        },
        {
            "start": 830834610,
            "stop": 830845749
        },
        {
            "start": 830847621,
            "stop": 830857229
        },
        {
            "start": 830858362,
            "stop": 830858514
        },
        {
            "start": 830858584,
            "stop": 830862155
        },
        {
            "start": 830862455,
            "stop": 830869434
        },
        {
            "start": 830870161,
            "stop": 830870362
        },
        {
            "start": 830870375,
            "stop": 830872562
        },
        {
            "start": 830872672,
            "stop": 830872755
        },
        {
            "start": 830880871,
            "stop": 830881216
        },
        {
            "start": 830882199,
            "stop": 830882503
        },
        {
            "start": 830883755,
            "stop": 830889073
        },
        {
            "start": 830889803,
            "stop": 830892683
        }
    ]
}