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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5000",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=4998",
    "results_count": 106145,
    "results_per_page": 20,
    "num_pages": 5308,
    "page_number": 4999,
    "results": [
        {
            "start": 872227826,
            "stop": 872227939
        },
        {
            "start": 872228085,
            "stop": 872228496
        },
        {
            "start": 872228538,
            "stop": 872228548
        },
        {
            "start": 872228584,
            "stop": 872228706
        },
        {
            "start": 872228742,
            "stop": 872229433
        },
        {
            "start": 872229532,
            "stop": 872229651
        },
        {
            "start": 872229668,
            "stop": 872229689
        },
        {
            "start": 872229733,
            "stop": 872229893
        },
        {
            "start": 872229930,
            "stop": 872229935
        },
        {
            "start": 872229971,
            "stop": 872230563
        },
        {
            "start": 872233722,
            "stop": 872233821
        },
        {
            "start": 872233925,
            "stop": 872234164
        },
        {
            "start": 872234181,
            "stop": 872234568
        },
        {
            "start": 872234626,
            "stop": 872234632
        },
        {
            "start": 872234668,
            "stop": 872234980
        },
        {
            "start": 872235035,
            "stop": 872235127
        },
        {
            "start": 872235163,
            "stop": 872235438
        },
        {
            "start": 872235543,
            "stop": 872235558
        },
        {
            "start": 872235601,
            "stop": 872235663
        },
        {
            "start": 872235725,
            "stop": 872235875
        }
    ]
}