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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=128",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=126",
    "results_count": 3094,
    "results_per_page": 20,
    "num_pages": 155,
    "page_number": 127,
    "results": [
        {
            "start": 964181379,
            "stop": 964182296
        },
        {
            "start": 964183609,
            "stop": 964187419
        },
        {
            "start": 964189252,
            "stop": 964191529
        },
        {
            "start": 964192888,
            "stop": 964196848
        },
        {
            "start": 964197037,
            "stop": 964197309
        },
        {
            "start": 964203653,
            "stop": 964204153
        },
        {
            "start": 964205805,
            "stop": 964208599
        },
        {
            "start": 964210060,
            "stop": 964220898
        },
        {
            "start": 964225684,
            "stop": 964259358
        },
        {
            "start": 964260354,
            "stop": 964262551
        },
        {
            "start": 964264348,
            "stop": 964264752
        },
        {
            "start": 964313128,
            "stop": 964317896
        },
        {
            "start": 964318957,
            "stop": 964321436
        },
        {
            "start": 964323231,
            "stop": 964323869
        },
        {
            "start": 964325017,
            "stop": 964328995
        },
        {
            "start": 964330525,
            "stop": 964343056
        },
        {
            "start": 964401260,
            "stop": 964404313
        },
        {
            "start": 964405223,
            "stop": 964408090
        },
        {
            "start": 964409043,
            "stop": 964411051
        },
        {
            "start": 964411953,
            "stop": 964412491
        }
    ]
}