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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=99",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 100,
    "results": [
        {
            "start": 818076785,
            "stop": 818076787
        },
        {
            "start": 818076817,
            "stop": 818076820
        },
        {
            "start": 818076898,
            "stop": 818076902
        },
        {
            "start": 818076910,
            "stop": 818076915
        },
        {
            "start": 818076947,
            "stop": 818076948
        },
        {
            "start": 818076964,
            "stop": 818076968
        },
        {
            "start": 818076997,
            "stop": 818076998
        },
        {
            "start": 818077157,
            "stop": 818077158
        },
        {
            "start": 818077293,
            "stop": 818077294
        },
        {
            "start": 818077386,
            "stop": 818077388
        },
        {
            "start": 818077396,
            "stop": 818077401
        },
        {
            "start": 818077419,
            "stop": 818077424
        },
        {
            "start": 818077432,
            "stop": 818077434
        },
        {
            "start": 818077545,
            "stop": 818077549
        },
        {
            "start": 818077608,
            "stop": 818077609
        },
        {
            "start": 818077657,
            "stop": 818077661
        },
        {
            "start": 818077710,
            "stop": 818077711
        },
        {
            "start": 818077749,
            "stop": 818077751
        },
        {
            "start": 818077761,
            "stop": 818077762
        },
        {
            "start": 818077896,
            "stop": 818077897
        }
    ]
}