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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=100",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 101,
    "results": [
        {
            "start": 817814605,
            "stop": 817814615
        },
        {
            "start": 817814619,
            "stop": 817814628
        },
        {
            "start": 817814631,
            "stop": 817814659
        },
        {
            "start": 817814662,
            "stop": 817814706
        },
        {
            "start": 817814709,
            "stop": 817814745
        },
        {
            "start": 817814749,
            "stop": 817814764
        },
        {
            "start": 817814767,
            "stop": 817814772
        },
        {
            "start": 817814777,
            "stop": 817814779
        },
        {
            "start": 817814782,
            "stop": 817814883
        },
        {
            "start": 817814886,
            "stop": 817814927
        },
        {
            "start": 817814930,
            "stop": 817814949
        },
        {
            "start": 817814955,
            "stop": 817815018
        },
        {
            "start": 817815023,
            "stop": 817815038
        },
        {
            "start": 817815041,
            "stop": 817815069
        },
        {
            "start": 817815072,
            "stop": 817815073
        },
        {
            "start": 817815077,
            "stop": 817815138
        },
        {
            "start": 817815141,
            "stop": 817815143
        },
        {
            "start": 817815146,
            "stop": 817815177
        },
        {
            "start": 817815186,
            "stop": 817815190
        },
        {
            "start": 817815193,
            "stop": 817815194
        }
    ]
}