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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT2/segments?format=api&page=13",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT2/segments?format=api&page=11",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 12,
    "results": [
        {
            "start": 1369206200,
            "stop": 1369207639
        },
        {
            "start": 1369207641,
            "stop": 1369208808
        },
        {
            "start": 1369208809,
            "stop": 1369209959
        },
        {
            "start": 1369209961,
            "stop": 1369211107
        },
        {
            "start": 1369211109,
            "stop": 1369212248
        },
        {
            "start": 1369212249,
            "stop": 1369212437
        },
        {
            "start": 1369212441,
            "stop": 1369213382
        },
        {
            "start": 1369213384,
            "stop": 1369214515
        },
        {
            "start": 1369214516,
            "stop": 1369215627
        },
        {
            "start": 1369215628,
            "stop": 1369216769
        },
        {
            "start": 1369216771,
            "stop": 1369217920
        },
        {
            "start": 1369217922,
            "stop": 1369219040
        },
        {
            "start": 1369219042,
            "stop": 1369220208
        },
        {
            "start": 1369220209,
            "stop": 1369221364
        },
        {
            "start": 1369221367,
            "stop": 1369222516
        },
        {
            "start": 1369222518,
            "stop": 1369223425
        },
        {
            "start": 1369223429,
            "stop": 1369223650
        },
        {
            "start": 1369223651,
            "stop": 1369224794
        },
        {
            "start": 1369224796,
            "stop": 1369225955
        },
        {
            "start": 1369225956,
            "stop": 1369227118
        }
    ]
}