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/S6/timelines/H1_CBCLOW_CAT4/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/S6/timelines/H1_CBCLOW_CAT4/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCLOW_CAT4/segments?format=api&page=100",
    "results_count": 164472,
    "results_per_page": 20,
    "num_pages": 8224,
    "page_number": 101,
    "results": [
        {
            "start": 931745252,
            "stop": 931745341
        },
        {
            "start": 931745359,
            "stop": 931745522
        },
        {
            "start": 931745539,
            "stop": 931745784
        },
        {
            "start": 931745904,
            "stop": 931745976
        },
        {
            "start": 931745993,
            "stop": 931746033
        },
        {
            "start": 931746035,
            "stop": 931746052
        },
        {
            "start": 931746076,
            "stop": 931746079
        },
        {
            "start": 931746121,
            "stop": 931746142
        },
        {
            "start": 931746164,
            "stop": 931746176
        },
        {
            "start": 931746296,
            "stop": 931746342
        },
        {
            "start": 931746344,
            "stop": 931746460
        },
        {
            "start": 931746478,
            "stop": 931746750
        },
        {
            "start": 931746768,
            "stop": 931746975
        },
        {
            "start": 931747007,
            "stop": 931747098
        },
        {
            "start": 931747101,
            "stop": 931747211
        },
        {
            "start": 931747229,
            "stop": 931747235
        },
        {
            "start": 931747252,
            "stop": 931747325
        },
        {
            "start": 931747373,
            "stop": 931747386
        },
        {
            "start": 931747420,
            "stop": 931747423
        },
        {
            "start": 931747465,
            "stop": 931747466
        }
    ]
}