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=6
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=7",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=5",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 6,
    "results": [
        {
            "start": 1369044544,
            "stop": 1369045644
        },
        {
            "start": 1369045645,
            "stop": 1369046749
        },
        {
            "start": 1369046750,
            "stop": 1369047848
        },
        {
            "start": 1369047850,
            "stop": 1369048949
        },
        {
            "start": 1369048951,
            "stop": 1369050077
        },
        {
            "start": 1369050079,
            "stop": 1369051202
        },
        {
            "start": 1369051204,
            "stop": 1369052365
        },
        {
            "start": 1369052367,
            "stop": 1369053519
        },
        {
            "start": 1369053520,
            "stop": 1369054712
        },
        {
            "start": 1369054714,
            "stop": 1369055939
        },
        {
            "start": 1369055941,
            "stop": 1369057200
        },
        {
            "start": 1369057201,
            "stop": 1369058472
        },
        {
            "start": 1369058474,
            "stop": 1369059727
        },
        {
            "start": 1369059729,
            "stop": 1369060943
        },
        {
            "start": 1369060944,
            "stop": 1369061098
        },
        {
            "start": 1369061100,
            "stop": 1369062022
        },
        {
            "start": 1369062023,
            "stop": 1369062559
        },
        {
            "start": 1369062560,
            "stop": 1369062856
        },
        {
            "start": 1369062858,
            "stop": 1369063802
        },
        {
            "start": 1369063803,
            "stop": 1369064346
        }
    ]
}